diff options
author | Sam Ruby <rubys@php.net> | 2000-03-05 23:59:56 +0000 |
---|---|---|
committer | Sam Ruby <rubys@php.net> | 2000-03-05 23:59:56 +0000 |
commit | dc70a25a1d91b2b288475eec60030fe49620b4e6 (patch) | |
tree | 35806ea9b075cc5693d2d84e53059f1f4990c881 /main/win95nt.h | |
parent | fbea48211e4cc84edf2b2ec5d77a326cde936ce5 (diff) | |
download | php-git-dc70a25a1d91b2b288475eec60030fe49620b4e6.tar.gz |
Eliminate "wrong number of parameters" warning
Diffstat (limited to 'main/win95nt.h')
-rw-r--r-- | main/win95nt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/win95nt.h b/main/win95nt.h index 46dded81b2..0e5413ab6f 100644 --- a/main/win95nt.h +++ b/main/win95nt.h @@ -24,7 +24,7 @@ typedef char * caddr_t; #define chdir(path) SetCurrentDirectory(path) #define mkdir(a,b) _mkdir(a) #define rmdir(a) _rmdir(a) -#define getpid() _getpid() +#define getpid _getpid #define php_sleep(t) Sleep(t*1000) #define getcwd(a, b) _getcwd(a, b) #define snprintf _snprintf |