summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ax25/axspawn.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/ax25/axspawn.c b/ax25/axspawn.c
index e16cc2c..413b554 100644
--- a/ax25/axspawn.c
+++ b/ax25/axspawn.c
@@ -467,15 +467,6 @@ static int Xtolower(int c)
/*---------------------------------------------------------------------------*/
-/* Use private function because some platforms are broken, eg 386BSD */
-
-int Xtoupper(int c)
-{
- return (c >= 'a' && c <= 'z') ? (c - 'a' + 'A') : c;
-}
-
-/*---------------------------------------------------------------------------*/
-
int Strcasecmp(const char *s1, const char *s2)
{
while (Xtolower(*s1) == Xtolower(*s2)) {