summaryrefslogtreecommitdiff
path: root/TSRM/tsrm_virtual_cwd.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-10-03 16:36:32 +0000
committerAndi Gutmans <andi@php.net>2000-10-03 16:36:32 +0000
commit94bea2902b2c131ea2bb1bb6d3205e8815e504da (patch)
tree963680b5f7afe61d4b9c9c71557e08cb8ca7e5d8 /TSRM/tsrm_virtual_cwd.c
parente97718461b24793b9ba6197daddd5d34344e420a (diff)
downloadphp-git-94bea2902b2c131ea2bb1bb6d3205e8815e504da.tar.gz
- Move #define to .h file
Diffstat (limited to 'TSRM/tsrm_virtual_cwd.c')
-rw-r--r--TSRM/tsrm_virtual_cwd.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c
index c8d41b2f6c..64d58f49bf 100644
--- a/TSRM/tsrm_virtual_cwd.c
+++ b/TSRM/tsrm_virtual_cwd.c
@@ -70,10 +70,7 @@ cwd_state main_cwd_state; /* True global */
#ifdef TSRM_WIN32
#define tsrm_strtok_r(a,b,c) strtok((a),(b))
-#define DEFAULT_SLASH '\\'
#define TOKENIZER_STRING "/\\"
-
-#define COPY_WHEN_ABSOLUTE 2
static int php_check_dots(const char *element, int n)
{
@@ -90,7 +87,6 @@ static int php_check_dots(const char *element, int n)
#else
-#define DEFAULT_SLASH '/'
#define TOKENIZER_STRING "/"
#endif
@@ -107,10 +103,6 @@ static int php_check_dots(const char *element, int n)
(len == 1 && ptr[0] == '.')
#endif
-#ifndef COPY_WHEN_ABSOLUTE
-#define COPY_WHEN_ABSOLUTE 0
-#endif
-
/* define this to check semantics */
#define IS_DIR_OK(s) (1)