diff lib/getopt.c @ 187:a6805e98cb7f

merge with 1.9.2i
author Jim Meyering <jim@meyering.net>
date Sat, 12 Feb 1994 17:23:51 +0000 (1994-02-12)
parents 09762e848a40
children 8745ae7b868c
line wrap: on
line diff
--- a/lib/getopt.c
+++ b/lib/getopt.c
@@ -195,11 +195,9 @@
 }
 
 /* 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 @@
 #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__ */