changeset 2837:85928ea90a6a

*** empty log message ***
author Jim Meyering <jim@meyering.net>
date Sat, 26 Aug 2000 12:04:13 +0000
parents 5e965e4f952c
children fd547e6c4244
files lib/ChangeLog lib/__fpending.c lib/__fpending.h
diffstat 3 files changed, 15 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -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"
--- a/lib/__fpending.c
+++ b/lib/__fpending.c
@@ -21,8 +21,7 @@
 # include <config.h>
 #endif
 
-#include <stdio.h>
-#include <sys/types.h>
+#include "__fpending.h"
 
 size_t
 __fpending (FILE *fp)
new file mode 100644
--- /dev/null
+++ b/lib/__fpending.h
@@ -0,0 +1,8 @@
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <stdio.h>
+#include <sys/types.h>
+
+size_t __fpending (FILE *);