*** empty log message ***
authorJim Meyering <jim@meyering.net>
Sat, 26 Aug 2000 12:04:13 +0000 (12:04 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 26 Aug 2000 12:04:13 +0000 (12:04 +0000)
lib/ChangeLog
lib/__fpending.c
lib/__fpending.h [new file with mode: 0644]

index 301e187..dcacfcf 100644 (file)
@@ -1,3 +1,9 @@
+2000-08-26  Jim Meyering  <meyering@lucent.com>
+
+       * Makefile.am (noinst_HEADERS): Add __fpending.h.
+       * __fpending.c: New file.
+       * __fpending.h: New file.
+
 2000-08-07  Paul Eggert  <eggert@twinsun.com>
 
        Standardize on "memory exhausted" instead of "Memory exhausted"
index a761b97..a872102 100644 (file)
@@ -21,8 +21,7 @@
 # include <config.h>
 #endif
 
-#include <stdio.h>
-#include <sys/types.h>
+#include "__fpending.h"
 
 size_t
 __fpending (FILE *fp)
diff --git a/lib/__fpending.h b/lib/__fpending.h
new file mode 100644 (file)
index 0000000..01614ab
--- /dev/null
@@ -0,0 +1,8 @@
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <stdio.h>
+#include <sys/types.h>
+
+size_t __fpending (FILE *);