From a99e0db34fe422880f8f7a37ef307bcdaac0d3ab Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 28 Feb 1995 12:06:57 +0000 Subject: [PATCH] Remove sys-dependent cruft and define-away getopt in system headers instead. --- lib/getopt.c | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/lib/getopt.c b/lib/getopt.c index 45b16d19d..b15092ab8 100644 --- a/lib/getopt.c +++ b/lib/getopt.c @@ -20,12 +20,6 @@ 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 . - Ditto for AIX 3.2 and . */ -#ifndef _NO_PROTO -#define _NO_PROTO -#endif - #ifdef HAVE_CONFIG_H #include #endif @@ -38,7 +32,9 @@ #endif #endif +#define getopt _sys_getopt #include +#undef getopt /* Comment out all this code if we are using the GNU C Library, and are not actually compiling the library itself. This code is part of the GNU C @@ -50,14 +46,9 @@ #if defined (_LIBC) || !defined (__GNU_LIBRARY__) - -/* This needs to come after some library #include - to get __GNU_LIBRARY__ defined. */ -#if defined (__GNU_LIBRARY__) || defined (__sgi) -/* Don't include stdlib.h for non-GNU C libraries because some of them - contain conflicting prototypes for getopt. */ +#define getopt _sys_getopt #include -#endif /* GNU C library. */ +#undef getopt /* This version of `getopt' appears to the caller like standard Unix `getopt' but it behaves differently for the user, since it allows the user -- 2.11.0