From: Andi Gutmans Date: Fri, 17 Mar 2000 10:25:23 +0000 (+0000) Subject: - Fix Win32 compile X-Git-Tag: PHP-4.0-RC1~98 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=959a55078033177edb9fac3dfe868afad3509a86;p=php - Fix Win32 compile --- 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 '\\'