diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:27:41 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:27:41 +0300 |
commit | 61bb57af53ebe916d2db6e3585d4fc7ac1d99b92 (patch) | |
tree | 2bfc4e5b127618d286f57a87d416702131b1b01d /missing | |
parent | 0a9ae0c89481db540e1b817a63cc6c793a62c90d (diff) | |
download | gawk-61bb57af53ebe916d2db6e3585d4fc7ac1d99b92.tar.gz |
Move to gawk-2.15.3.gawk-2.15.3
Diffstat (limited to 'missing')
-rw-r--r-- | missing/strftime.c | 2 | ||||
-rw-r--r-- | missing/strncasecmp.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/missing/strftime.c b/missing/strftime.c index 85d2e23c..58ba20ca 100644 --- a/missing/strftime.c +++ b/missing/strftime.c @@ -92,7 +92,7 @@ adddecl(static int iso8601wknum(const struct tm *timeptr);) #define range(low, item, hi) max(low, min(item, hi)) -#if !defined(MSDOS) && !defined(TZNAME_MISSING) +#if !defined(OS2) && !defined(MSDOS) && !defined(TZNAME_MISSING) extern char *tzname[2]; extern int daylight; #endif diff --git a/missing/strncasecmp.c b/missing/strncasecmp.c index 5d93911f..0f6026c8 100644 --- a/missing/strncasecmp.c +++ b/missing/strncasecmp.c @@ -19,7 +19,11 @@ static char sccsid[] = "@(#)strcasecmp.c 5.6 (Berkeley) 6/27/88"; #endif /* LIBC_SCCS and not lint */ +#ifdef atarist +#include <sys/types.h> +#else #define u_char unsigned char +#endif /* * This array is designed for mapping upper and lower case letter |