aaron 01/11/22 09:51:27
Modified: mmap/unix mmap.c Log: Fix a compiler warning from an undeclared function. Submitted by: Joe Orton <[EMAIL PROTECTED]> Revision Changes Path 1.38 +1 -0 apr/mmap/unix/mmap.c Index: mmap.c =================================================================== RCS file: /home/cvs/apr/mmap/unix/mmap.c,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- mmap.c 2001/11/21 17:00:51 1.37 +++ mmap.c 2001/11/22 17:51:27 1.38 @@ -55,6 +55,7 @@ #include "apr.h" #include "apr_private.h" #include "apr_general.h" +#include "apr_strings.h" #include "apr_mmap.h" #include "apr_errno.h" #include "fileio.h"
