diff options
author | Jeff Trawick <trawick@apache.org> | 2000-06-28 16:33:48 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-06-28 16:33:48 +0200 |
commit | b5c0ae056b1ad7225ee877e2397106a864492c25 (patch) | |
tree | 59facede96d5653e96fac83cf6ffad183e4902ce /server/config.c | |
parent | turn this off for now; the stuff compiles but doesn't link... (diff) | |
download | apache2-b5c0ae056b1ad7225ee877e2397106a864492c25.tar.xz apache2-b5c0ae056b1ad7225ee877e2397106a864492c25.zip |
Include strings.h for strcasecmp(), strncasecmp(), and bzero().
Include time.h for time().
This removes a bunch of compiler warnings with gcc -Wall on AIX.
Submitted by: Jeff Trawick, Victor Orlikowski
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85723 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/config.c')
-rw-r--r-- | server/config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/config.c b/server/config.c index 74b49e72eb..c4448b1546 100644 --- a/server/config.c +++ b/server/config.c @@ -87,6 +87,9 @@ #ifdef HAVE_ARPA_INET_H #include <arpa/inet.h> #endif +#ifdef HAVE_STRINGS_H +#include <strings.h> +#endif API_VAR_EXPORT const char *ap_server_argv0; |