summaryrefslogtreecommitdiffstats
path: root/os/unix/unixd.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-06-28 16:33:48 +0200
committerJeff Trawick <trawick@apache.org>2000-06-28 16:33:48 +0200
commitb5c0ae056b1ad7225ee877e2397106a864492c25 (patch)
tree59facede96d5653e96fac83cf6ffad183e4902ce /os/unix/unixd.c
parentturn this off for now; the stuff compiles but doesn't link... (diff)
downloadapache2-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 'os/unix/unixd.c')
-rw-r--r--os/unix/unixd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/os/unix/unixd.c b/os/unix/unixd.c
index 561f15a0a4..bc0153e7f7 100644
--- a/os/unix/unixd.c
+++ b/os/unix/unixd.c
@@ -74,6 +74,9 @@
#ifdef HAVE_GRP_H
#include <grp.h>
#endif
+#ifdef HAVE_STRINGS_H
+#include <strings.h>
+#endif
unixd_config_rec unixd_config;