]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Use APR_WANT_STRFUNC and apr_want.h instead
authorRainer Jung <rjung@apache.org>
Sun, 11 Jan 2009 17:48:12 +0000 (17:48 +0000)
committerRainer Jung <rjung@apache.org>
Sun, 11 Jan 2009 17:48:12 +0000 (17:48 +0000)
of APR_HAVE_* and system header inclusion.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@733495 13f79535-47bb-0310-9956-ffa450edef68

support/rotatelogs.c

index 83ae6ceaae0687cd0d873b39b5df5c74877c1e76..0046c8722c388e07d593f7bcbf5e21dbe7a4d8c3 100644 (file)
 #if APR_HAVE_STDLIB_H
 #include <stdlib.h>
 #endif
-#if APR_HAVE_STRING_H
-#include <string.h>
-#endif
-#if APR_HAVE_STRINGS_H
-#include <strings.h>
-#endif
+#define APR_WANT_STRFUNC
+#include "apr_want.h"
 
 #define BUFSIZE         65536
 #define ERRMSGSZ        256