From: Jeff Trawick Date: Mon, 27 Nov 2000 16:40:13 +0000 (+0000) Subject: Use #if APR_HAVE_xyz_H, not #ifdef APR_HAVE_xyz_H X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c09a0f068b1f372fb1f72cb7a1753104b6bfae5;p=apache Use #if APR_HAVE_xyz_H, not #ifdef APR_HAVE_xyz_H Submitted by: Brian Havard git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87090 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 77f382c2cb..d1e8e0625f 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -109,7 +109,7 @@ #include #endif #endif -#ifdef APR_HAVE_SYS_UIO_H +#if APR_HAVE_SYS_UIO_H #include #endif #endif