diff options
author | Andi Gutmans <andi@php.net> | 2000-03-17 10:25:23 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-03-17 10:25:23 +0000 |
commit | 959a55078033177edb9fac3dfe868afad3509a86 (patch) | |
tree | e854efb03b3d7dd4bde491fe0a0c9c9b7bdb82de /main | |
parent | 0979233f5a264599c9bfe950397e280c4e1b0fb2 (diff) | |
download | php-git-959a55078033177edb9fac3dfe868afad3509a86.tar.gz |
- Fix Win32 compile
Diffstat (limited to 'main')
-rw-r--r-- | main/php_virtual_cwd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/php_virtual_cwd.c b/main/php_virtual_cwd.c index a8c04b0390..c3bd9ae0df 100644 --- a/main/php_virtual_cwd.c +++ b/main/php_virtual_cwd.c @@ -20,6 +20,7 @@ #endif #ifdef PHP_WIN32 +typedef unsigned int uint; #define strtok_r(a,b,c) strtok((a),(b)) #define IS_SLASH(c) ((c) == '/' || (c) == '\\') #define DEFAULT_SLASH '\\' |