* glob.c: Add #include <stdio.h> the readline.h #include, which
authorBen Pfaff <blp@gnu.org>
Thu, 11 Dec 2003 06:17:20 +0000 (06:17 +0000)
committerBen Pfaff <blp@gnu.org>
Thu, 11 Dec 2003 06:17:20 +0000 (06:17 +0000)
fixes problems for some readline versions that refer to FILE but
don't #include <stdio.h> themselves.

src/ChangeLog
src/glob.c

index c3877c4ac5e588c8f52f8d77d22b1a82f5be3cdb..def71128e2803b8479919a49f409b973a2119a37 100644 (file)
@@ -1,3 +1,9 @@
+Wed Dec 10 22:03:32 2003  Ben Pfaff  <blp@gnu.org>
+
+       * glob.c: Add #include <stdio.h> the readline.h #include, which
+       fixes problems for some readline versions that refer to FILE but
+       don't #include <stdio.h> themselves.
+
 Sun Jan  2 21:40:13 2000  Ben Pfaff  <blp@gnu.org>
 
        * Makefile.am: Reorganized.  Put locale dir in version.c instead
 Sun Jan  2 21:40:13 2000  Ben Pfaff  <blp@gnu.org>
 
        * Makefile.am: Reorganized.  Put locale dir in version.c instead
index f9d443b5cfdf37c37f9708f856f1ae3a8d256ec0..b2abbcf2b578bd2beaeafc4070f6c21f99b55138 100644 (file)
@@ -21,6 +21,7 @@
 
 #include <assert.h>
 #include <stdlib.h>
 
 #include <assert.h>
 #include <stdlib.h>
+#include <stdio.h>
 
 #if TIME_WITH_SYS_TIME
 #include <sys/time.h>
 
 #if TIME_WITH_SYS_TIME
 #include <sys/time.h>