Add note about Haiku.
authorBruno Haible <bruno@clisp.org>
Mon, 10 Nov 2008 11:46:10 +0000 (12:46 +0100)
committerBruno Haible <bruno@clisp.org>
Mon, 10 Nov 2008 11:46:10 +0000 (12:46 +0100)
lib/fpurge.c

index eccfa0e..916b17b 100644 (file)
@@ -19,7 +19,7 @@
 /* Specification.  */
 #include "fpurge.h"
 
-#if HAVE___FPURGE                   /* glibc >= 2.2, Solaris >= 7 */
+#if HAVE___FPURGE                   /* glibc >= 2.2, Haiku, Solaris >= 7 */
 # include <stdio_ext.h>
 #endif
 #include <stdlib.h>
@@ -29,7 +29,7 @@
 int
 fpurge (FILE *fp)
 {
-#if HAVE___FPURGE                   /* glibc >= 2.2, Solaris >= 7 */
+#if HAVE___FPURGE                   /* glibc >= 2.2, Haiku, Solaris >= 7 */
 
   __fpurge (fp);
   /* The __fpurge function does not have a return value.  */