diff options
author | Mike Seplowitz <mseplowitz@bloomberg.net> | 2015-01-13 01:53:14 (GMT) |
---|---|---|
committer | Mike Seplowitz <mseplowitz@bloomberg.net> | 2015-08-19 12:43:59 (GMT) |
commit | cdab57de00ab7ce157f1fdd601ce242588fcadce (patch) | |
tree | e22fc97286d2766c596108f13ba49d27a30f8c37 /src/getopt.c | |
parent | 94c10a6a18ceadf78d27245ce389610c67a7cf2e (diff) | |
download | Ninja-cdab57de00ab7ce157f1fdd601ce242588fcadce.zip Ninja-cdab57de00ab7ce157f1fdd601ce242588fcadce.tar.gz Ninja-cdab57de00ab7ce157f1fdd601ce242588fcadce.tar.bz2 |
Fix getopt for AIX
AIX supplies getopt but not getopt_long.
We can't use the embedded getopt implementation, since the constness of its
arguments doesn't match the AIX system routine.
Diffstat (limited to 'src/getopt.c')
-rw-r--r-- | src/getopt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/getopt.c b/src/getopt.c index 3350fb9..0c2ef35 100644 --- a/src/getopt.c +++ b/src/getopt.c @@ -385,11 +385,13 @@ getopt_internal (int argc, char **argv, char *shortopts, return optopt; } +#ifndef _AIX int getopt (int argc, char **argv, char *optstring) { return getopt_internal (argc, argv, optstring, NULL, NULL, 0); } +#endif int getopt_long (int argc, char **argv, const char *shortopts, |