Eliminate remaining calls to stat in apps/apps.c and unify WIN32_rename for

all Windows targets.
This commit is contained in:
Andy Polyakov
2005-11-04 16:12:05 +00:00
parent ffa101872f
commit a1ad253f17
2 changed files with 91 additions and 106 deletions

View File

@@ -134,11 +134,6 @@ long app_RAND_load_files(char *file); /* `file' is a list of files to read,
* (see e_os.h). The string is
* destroyed! */
#ifdef OPENSSL_SYS_WIN32
#define rename(from,to) WIN32_rename((from),(to))
int WIN32_rename(const char *oldname,const char *newname);
#endif
#ifndef MONOLITH
#define MAIN(a,v) main(a,v)