changeset 10781:20acc01fca51

Add note about Haiku.
author Bruno Haible <bruno@clisp.org>
date Mon, 10 Nov 2008 12:46:10 +0100
parents 5c7a68d31801
children f65529c86553
files lib/fpurge.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/fpurge.c	Mon Nov 10 12:37:32 2008 +0100
+++ b/lib/fpurge.c	Mon Nov 10 12:46:10 2008 +0100
@@ -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.  */