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:
9
modules/cache/mod_file_cache.c
vendored
9
modules/cache/mod_file_cache.c
vendored
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user