diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-02 15:53:23 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-02 15:53:23 +0300 |
commit | f3d9dd233ac07f764a554528c85be3768a1d1ddb (patch) | |
tree | f190ab7e0188c66eba76a74b8717e3ad7b16ef04 /att.getopt.c | |
parent | 0f1b7311fbc0e61e3e12194ce3e8484aaa4b7fe6 (diff) | |
download | egawk-f3d9dd233ac07f764a554528c85be3768a1d1ddb.tar.gz egawk-f3d9dd233ac07f764a554528c85be3768a1d1ddb.tar.bz2 egawk-f3d9dd233ac07f764a554528c85be3768a1d1ddb.zip |
Now at gawk 2.10.
Diffstat (limited to 'att.getopt.c')
-rw-r--r-- | att.getopt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/att.getopt.c b/att.getopt.c index c5eeddae..df68405f 100644 --- a/att.getopt.c +++ b/att.getopt.c @@ -23,7 +23,11 @@ */ /* This include is needed only to get "index" defined as "strchr" on Sys V. */ +#ifdef MSDOS +#define index strchr +#else #include "defs.h" +#endif /*LINTLIBRARY*/ #define NULL 0 |