* lib/fflush.c: Fix missing include.
authorEric Blake <ebb9@byu.net>
Mon, 23 Apr 2007 12:49:50 +0000 (12:49 +0000)
committerEric Blake <ebb9@byu.net>
Mon, 23 Apr 2007 12:49:50 +0000 (12:49 +0000)
Reported by Bruno Haible.

ChangeLog
lib/fflush.c

index f5a0210..0c552c2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-04-23  Eric Blake  <ebb9@byu.net>
+
+       * lib/fflush.c: Fix missing include.
+       Reported by Bruno Haible.
+
 2007-04-23  Bruno Haible  <bruno@clisp.org>
 
        * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
index 8c902f8..7481e66 100755 (executable)
 /* Written by Eric Blake. */
 
 #include <config.h>
-#include <errno.h>
+
+/* Specification.  */
 #include <stdio.h>
 
+#include <errno.h>
+#include <unistd.h>
+
 #include "fpurge.h"
 
 #undef fflush