1
0
mirror of https://github.com/php/php-src.git synced 2026-04-09 00:53:30 +02:00

Avoid the side-effect of defining function names, so that the PHP functions

are not renamed to their prefixed variants.

PR: #3535
This commit is contained in:
Sascha Schumann
2000-03-05 17:39:41 +00:00
parent 79e36bd365
commit 2897c6fe25

View File

@@ -19,14 +19,14 @@ typedef char * caddr_t;
#define S_IFIFO _IFIFO
#define S_IFBLK _IFBLK
#define S_IFLNK _IFLNK
#define pclose _pclose
#define popen _popen
#define pclose(a) _pclose(a)
#define popen(a) _popen(a)
#define chdir(path) SetCurrentDirectory(path)
#define mkdir(a,b) _mkdir(a)
#define rmdir _rmdir
#define getpid _getpid
#define rmdir(a) _rmdir(a)
#define getpid(a) _getpid(a)
#define php_sleep(t) Sleep(t*1000)
#define getcwd _getcwd
#define getcwd(a) _getcwd(a)
#define snprintf _snprintf
#define off_t _off_t
#define vsnprintf _vsnprintf