1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-05 05:30:39 +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

@@ -63,9 +63,9 @@
#include "apr.h"
#include "apr_strings.h"
#if APR_HAVE_STDIO_H
#include <stdio.h> /* for fprintf(), sprintf() */
#endif
#define APR_WANT_STDIO /* for fprintf(), sprintf() */
#define APR_WANT_STRFUNC
#include "apr_want.h"
#include "httpd.h"
#include "http_protocol.h"