trawick 00/12/10 13:43:11
Modified: test testmmap.c Log: fix a feature test macro so that unistd.h actually gets included Revision Changes Path 1.20 +1 -1 apr/test/testmmap.c Index: testmmap.c =================================================================== RCS file: /home/cvs/apr/test/testmmap.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- testmmap.c 2000/12/07 13:20:43 1.19 +++ testmmap.c 2000/12/10 21:43:11 1.20 @@ -57,7 +57,7 @@ #include "apr_general.h" #include "apr_lib.h" #include "apr_file_io.h" -#if APR_HAS_UNISTD_H +#if APR_HAVE_UNISTD_H #include <unistd.h> #endif #include <stdio.h>
