From: William A. Rowe Jr Date: Fri, 19 Aug 2016 16:34:14 +0000 (+0000) Subject: Generally, the cart comes before the horse, this mirrors apr_lib.h X-Git-Tag: 2.5.0-alpha~1247 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=12d873689cb6940177327d8bca31bfec0439e37a;p=thirdparty%2Fapache%2Fhttpd.git Generally, the cart comes before the horse, this mirrors apr_lib.h git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1756937 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/gen_test_char.c b/server/gen_test_char.c index 7138a784e58..7c90b68429d 100644 --- a/server/gen_test_char.c +++ b/server/gen_test_char.c @@ -16,6 +16,7 @@ #ifdef CROSS_COMPILE +#include #define apr_isalnum(c) (isalnum(((unsigned char)(c)))) #define apr_isalpha(c) (isalpha(((unsigned char)(c)))) #define apr_iscntrl(c) (iscntrl(((unsigned char)(c)))) @@ -25,7 +26,6 @@ #else #define apr_isascii(c) (((c) & ~0x7f)==0) #endif -#include #define APR_HAVE_STDIO_H 1 #define APR_HAVE_STRING_H 1