]> granicus.if.org Git - php/commitdiff
- Remove unneeded IS_SLASH() definition.
authorAndi Gutmans <andi@php.net>
Sun, 1 Oct 2000 18:13:41 +0000 (18:13 +0000)
committerAndi Gutmans <andi@php.net>
Sun, 1 Oct 2000 18:13:41 +0000 (18:13 +0000)
main/fopen_wrappers.c

index 2e862db77e359b0e7ad530eebc151ba226825cfa..7fdbca2c8eb8cd20d88ecbe2795ffe76346bd576 100644 (file)
 #include <sys/un.h>
 #endif
 
-/* The following macros are borrowed from virtual_cwd.c and should be put in
- * a joint header file when we move virtual_cwd to TSRM */
-#ifdef ZEND_WIN32
-#define IS_SLASH(c)    ((c) == '/' || (c) == '\\')
-#else
-#define IS_SLASH(c)    ((c) == '/')
-#endif
-
-
 typedef FILE * (*php_fopen_url_wrapper_t) (const char *, char *, int, int *, int *, char **) ;
 
 static FILE *php_fopen_url_wrapper(const char *, char *, int, int *, int *, char **);