bjh 00/11/25 19:51:46
Modified: include apr_file_io.h
Log:
We define APR_SET/CUR/END using SEEK_SET/CUR/END from stdio so make sure
stdio.h is included.
Revision Changes Path
1.75 +3 -0 apr/include/apr_file_io.h
Index: apr_file_io.h
===================================================================
RCS file: /home/cvs/apr/include/apr_file_io.h,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- apr_file_io.h 2000/11/26 03:00:00 1.74
+++ apr_file_io.h 2000/11/26 03:51:45 1.75
@@ -59,6 +59,9 @@
#include "apr_pools.h"
#include "apr_time.h"
#include "apr_errno.h"
+#if APR_HAVE_STDIO_H
+#include <stdio.h>
+#endif
#ifdef __cplusplus
extern "C" {