1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Clean up some of the includes:

- explicitly include apr_lib.h since ap_config.h doesn't
- use apr_want.h where possible
- use APR_HAVE_ where possible
- remove some unneeded includes


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88060 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Greg Stein
2001-02-10 13:05:29 +00:00
parent faf8ec67da
commit bb282b75f7
27 changed files with 199 additions and 193 deletions

View File

@@ -70,6 +70,9 @@
#include "apr_file_io.h"
#include "apr_fnmatch.h"
#define APR_WANT_STRFUNC
#include "apr_want.h"
#define CORE_PRIVATE
#include "ap_config.h"
#include "httpd.h"
@@ -84,7 +87,7 @@
#include "mod_core.h"
#ifdef APR_HAVE_STDARG_H
#if APR_HAVE_STDARG_H
#include <stdarg.h>
#endif