gstein 01/02/04 21:22:31
Modified: include apr_want.h Log: some whitespace. Revision Changes Path 1.3 +8 -0 apr/include/apr_want.h Index: apr_want.h =================================================================== RCS file: /home/cvs/apr/include/apr_want.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -u -r1.2 -r1.3 --- apr_want.h 2001/01/24 01:50:46 1.2 +++ apr_want.h 2001/02/05 05:22:30 1.3 @@ -77,39 +77,47 @@ /* --------------------------------------------------------------------- */ #ifdef APR_WANT_STRFUNC + #if APR_HAVE_STRING_H #include <string.h> #endif #if APR_HAVE_STRINGS_H #include <strings.h> #endif + #undef APR_WANT_STRFUNC #endif /* --------------------------------------------------------------------- */ #ifdef APR_WANT_MEMFUNC + #if APR_HAVE_STRING_H #include <string.h> #endif + #undef APR_WANT_MEMFUNC #endif /* --------------------------------------------------------------------- */ #ifdef APR_WANT_STDIO + #if APR_HAVE_STDIO_H #include <stdio.h> #endif + #undef APR_WANT_STDIO #endif /* --------------------------------------------------------------------- */ #ifdef APR_WANT_IOVEC + #if APR_HAVE_SYS_UIO_H #include <sys/uio.h> #endif + #undef APR_WANT_IOVEC #endif
