summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-10-01 18:13:41 +0000
committerAndi Gutmans <andi@php.net>2000-10-01 18:13:41 +0000
commit5819b6d4a6bdcb6cd33431761d7d2430fed9a7ce (patch)
tree58d6b9da8bcef139635e77d7587ced972bc2cc70
parent58294f67d2ca0842d9d60fe1c26891da85201870 (diff)
downloadphp-git-5819b6d4a6bdcb6cd33431761d7d2430fed9a7ce.tar.gz
- Remove unneeded IS_SLASH() definition.
-rw-r--r--main/fopen_wrappers.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/main/fopen_wrappers.c b/main/fopen_wrappers.c
index 2e862db77e..7fdbca2c8e 100644
--- a/main/fopen_wrappers.c
+++ b/main/fopen_wrappers.c
@@ -77,15 +77,6 @@
#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 **);