gregames 2002/06/27 11:25:24
Modified: file_io/unix pipe.c
Log:
FreeBSD 4.6-STABLE: fix a warning
pipe.c: In function `apr_file_namedpipe_create':
pipe.c:216: warning: implicit declaration of function `mkfifo'
Revision Changes Path
1.55 +3 -0 apr/file_io/unix/pipe.c
Index: pipe.c
===================================================================
RCS file: /home/cvs/apr/file_io/unix/pipe.c,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- pipe.c 31 May 2002 16:18:38 -0000 1.54
+++ pipe.c 27 Jun 2002 18:25:24 -0000 1.55
@@ -54,6 +54,9 @@
#include "fileio.h"
#include "apr_strings.h"
+#if APR_HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
/* Figure out how to get pipe block/nonblock on BeOS...
* Basically, BONE7 changed things again so that ioctl didn't work,
|