diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:18:27 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:18:27 +0300 |
commit | e1ef22d366abd1f9ec95eb495c727d55181c8584 (patch) | |
tree | cc0fee624202820eb928e60b6a096362c85ff807 /missing.c | |
parent | cae8bc6ced84c12590e3554a06a952283735363a (diff) | |
download | egawk-e1ef22d366abd1f9ec95eb495c727d55181c8584.tar.gz egawk-e1ef22d366abd1f9ec95eb495c727d55181c8584.tar.bz2 egawk-e1ef22d366abd1f9ec95eb495c727d55181c8584.zip |
Move to 2.15.
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 */ |