diff options
Diffstat (limited to 'missing.c')
-rw-r--r-- | missing.c | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -16,6 +16,10 @@ #include "config.h" +#ifndef __STDC__ +#define const +#endif /* !__STDC__ */ + #ifdef STDC_HEADERS #include <string.h> #endif @@ -61,13 +65,9 @@ #endif /* RANDOM_MISSING */ #ifdef STRCASE_MISSING -#include "missing/strcase.c" +#include "missing/strncasecmp.c" #endif /* STRCASE_MISSING */ -#ifdef STRCHR_MISSING -#include "missing/strchr.c" -#endif /* STRCHR_MISSING */ - #ifdef STRERROR_MISSING #include "missing/strerror.c" #endif /* STRERROR_MISSING */ @@ -76,6 +76,10 @@ #include "missing/strftime.c" #endif /* STRFTIME_MISSING */ +#ifdef STRCHR_MISSING +#include "missing/strchr.c" +#endif /* STRCHR_MISSING */ + #ifdef STRTOD_MISSING #include "missing/strtod.c" #endif /* STRTOD_MISSING */ |