bjh 01/07/26 09:08:21
Modified: file_io/unix filepath.c Log: While we're tidying up warnings, fix this warning: implicit declaration of function `strncmp' Revision Changes Path 1.5 +2 -0 apr/file_io/unix/filepath.c Index: filepath.c =================================================================== RCS file: /home/cvs/apr/file_io/unix/filepath.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- filepath.c 2001/06/27 19:44:21 1.4 +++ filepath.c 2001/07/26 16:08:21 1.5 @@ -56,6 +56,8 @@ #include "fileio.h" #include "apr_file_io.h" #include "apr_strings.h" +#define APR_WANT_STRFUNC +#include "apr_want.h" #if APR_HAVE_UNISTD_H #include <unistd.h> #endif
