From 084697c3aecb0866a75427e04548a8c5a8db00d1 Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Tue, 5 Oct 1999 06:01:32 +0000 Subject: [PATCH] Add a couple of missing function declarations git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83932 13f79535-47bb-0310-9956-ffa450edef68 --- os/win32/os.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/os/win32/os.h b/os/win32/os.h index 865d57d44a..6e026ed912 100644 --- a/os/win32/os.h +++ b/os/win32/os.h @@ -162,8 +162,6 @@ __inline int ap_os_is_path_absolute(const char *file) 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 @@ __inline int ap_os_is_path_absolute(const char *file) #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 -- 2.40.0