summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1994-02-12 17:17:26 +0000
committerJim Meyering <jim@meyering.net>1994-02-12 17:17:26 +0000
commit167ca32b11a755fb2a528e96ac804a5d7567d596 (patch)
treed20bfab265a2072a6fbb3af51ca3228d6fffb63f
parenta85c1d5cc66f9acde3615742b7bf8e1b69769139 (diff)
downloadgnulib-167ca32b11a755fb2a528e96ac804a5d7567d596.tar.gz
GNU shell utilitiesSHELLUTILS-1_9_2i
-rw-r--r--lib/getopt.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/getopt.c b/lib/getopt.c
index 6cdedb019b..65af7ecd50 100644
--- a/lib/getopt.c
+++ b/lib/getopt.c
@@ -195,11 +195,9 @@ my_index (str, chr)
}
/* If using GCC, we can safely declare strlen this way.
- If not using GCC, it is ok not to declare it.
- (Supposedly there are some machines where it might get a warning,
- but changing this conditional to __STDC__ is too risky.) */
+ If not using GCC, it is ok not to declare it. */
#ifdef __GNUC__
-#if ! (defined (emacs) && !defined (__STDC__))
+#ifndef __STDC__
#ifdef IN_GCC
#include "gstddef.h"
#else /* not IN_GCC */
@@ -208,7 +206,7 @@ my_index (str, chr)
#include <stddef.h>
#endif /* not IN_GCC */
extern size_t strlen (const char *);
-#endif /* ! (defined (emacs) && !defined (__STDC__)) */
+#endif /* not __STDC__ */
#endif /* __GNUC__ */
#endif /* not __GNU_LIBRARY__ */