summaryrefslogtreecommitdiff
path: root/lib/getopt.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-12-29 04:40:30 +0000
committerJim Meyering <jim@meyering.net>1993-12-29 04:40:30 +0000
commit39f2fdda0843370dbcb0dc1e604d62179333e3d3 (patch)
tree20466ea38e6dc316cb4cf0821be221e906268fd5 /lib/getopt.c
parent3ffdef958d5a35bc106da6430f9ddbc512afe7ca (diff)
downloadcoreutils-39f2fdda0843370dbcb0dc1e604d62179333e3d3.tar.xz
merge with 1.9.2b
Diffstat (limited to 'lib/getopt.c')
-rw-r--r--lib/getopt.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/getopt.c b/lib/getopt.c
index 7a4673b8d..2f1e6d8d7 100644
--- a/lib/getopt.c
+++ b/lib/getopt.c
@@ -20,6 +20,14 @@
along with this program; if not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+/*
+ * This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
+ * Ditto for AIX 3.2 and <stdlib.h>.
+ */
+#ifndef _NO_PROTO
+#define _NO_PROTO
+#endif
+
#ifdef HAVE_CONFIG_H
#if defined (emacs) || defined (CONFIG_BROKETS)
/* We use <config.h> instead of "config.h" so that a compilation
@@ -39,11 +47,6 @@
#endif
#endif
-/* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>. */
-#ifndef _NO_PROTO
-#define _NO_PROTO
-#endif
-
#include <stdio.h>
/* Comment out all this code if we are using the GNU C Library, and are not