stoddard 99/10/04 23:01:38
Modified: src/os/win32 os.h Log: Add a couple of missing function declarations Revision Changes Path 1.7 +2 -3 apache-2.0/src/os/win32/os.h Index: os.h =================================================================== RCS file: /home/cvs/apache-2.0/src/os/win32/os.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- os.h 1999/09/13 18:30:32 1.6 +++ os.h 1999/10/05 06:01:32 1.7 @@ -162,8 +162,6 @@ return file[0] == '/' || file[1] == ':'; } -#define stat(f,ps) os_stat(f,ps) - #define _spawnv(mode,cmdname,argv) os_spawnv(mode,cmdname,argv) #define spawnv(mode,cmdname,argv) os_spawnv(mode,cmdname,argv) #define _spawnve(mode,cmdname,argv,envp) os_spawnve(mode,cmdname,argv,envp) @@ -172,7 +170,8 @@ #define spawnle os_spawnle /* OS-dependent filename routines in util_win32.c */ - +int ap_os_is_filename_valid(const char *file); +int os_strftime(char *, size_t , const char *, const struct tm *); /* Abstractions for dealing with shared object files (DLLs on Win32). * These are used by mod_so.c