changeset 2953:a58bda8b783d

Do not comment out all the code if we are using the GNU C library, because in some cases we are replacing buggy code in the GNU C library itself.
author Jim Meyering <jim@meyering.net>
date Fri, 03 Nov 2000 08:43:20 +0000
parents b9dcba39a41f
children d28482de9e26
files lib/.cppi-disable lib/fnmatch.c
diffstat 2 files changed, 2 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/lib/.cppi-disable	Tue Oct 31 07:10:03 2000 +0000
+++ b/lib/.cppi-disable	Fri Nov 03 08:43:20 2000 +0000
@@ -8,3 +8,4 @@
 regex.h
 regex.c
 getpagesize.h
+fnmatch.c
--- a/lib/fnmatch.c	Tue Oct 31 07:10:03 2000 +0000
+++ b/lib/fnmatch.c	Fri Nov 03 08:43:20 2000 +0000
@@ -27,22 +27,10 @@
 #include <fnmatch.h>
 #include <ctype.h>
 
-
-/* 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
-   Library, but also included in many other GNU distributions.  Compiling
-   and linking in this code is a waste when using the GNU C library
-   (especially if it is a shared library).  Rather than having every GNU
-   program understand `configure --with-gnu-libc' and omit the object files,
-   it is simpler to just do this in the source for each such file.  */
-
-#if defined _LIBC || !defined __GNU_LIBRARY__
-
-
 # if defined STDC_HEADERS || !defined isascii
 #  define IN_CTYPE_DOMAIN(c) 1
 # else
-#  define IN_CTYPE_DOMAIN(c) isascii(c)
+#  define IN_CTYPE_DOMAIN(c) isascii (c)
 # endif
 
 # define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
@@ -240,5 +228,3 @@
 
 # undef FOLD
 }
-
-#endif	/* _LIBC or not __GNU_LIBRARY__.  */