From: Sascha Schumann Date: Mon, 21 Aug 2000 09:57:13 +0000 (+0000) Subject: The macro CONVERT_TO_WIN_FS is not used anywhere. X-Git-Tag: php-4.0.2RC1~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19741cc37ad1773a6d4b59392991ff7b90899775;p=php The macro CONVERT_TO_WIN_FS is not used anywhere. --- diff --git a/main/win95nt.h b/main/win95nt.h index 9010c06e75..a1cbd3bd1e 100644 --- a/main/win95nt.h +++ b/main/win95nt.h @@ -62,12 +62,3 @@ typedef long pid_t; #undef PHP_PROG_SENDMAIL #define PHP_PROG_SENDMAIL "Built in mailer" #endif - -#define CONVERT_TO_WIN_FS(Filename) \ -{ \ - char *stemp; \ - if (Filename) \ - for (stemp = Filename; *stemp; stemp++) \ - if ( *stemp == '/') \ - *stemp = '\\'; \ -}