1
0
mirror of https://github.com/apache/httpd.git synced 2025-09-02 13:21:21 +03:00

Protect system header files with the appropriate macros.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85558 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Bloom
2000-06-12 23:03:05 +00:00
parent 47df25ba18
commit 750d8cc03c
30 changed files with 140 additions and 17 deletions

View File

@@ -109,11 +109,18 @@
an extra stat() that's a waste.
*/
#ifdef HAVE_STDIOP_H
#include <stdio.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
/* What are these here for? rbb */
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#define CORE_PRIVATE