summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-07-16 13:31:22 +0000
committerZeev Suraski <zeev@php.net>2001-07-16 13:31:22 +0000
commit1c27165161308cd4fb3b7f1a63ed37970b2de815 (patch)
tree3d86dc32cea46b514bf1dfba1dff68cdc1b81af0 /TSRM
parent03b6b3715711532e486913b2da15700e27ea786c (diff)
downloadphp-git-1c27165161308cd4fb3b7f1a63ed37970b2de815.tar.gz
Add a useful #define
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/tsrm_virtual_cwd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/TSRM/tsrm_virtual_cwd.h b/TSRM/tsrm_virtual_cwd.h
index 82dcc5765e..4b1fa2d556 100644
--- a/TSRM/tsrm_virtual_cwd.h
+++ b/TSRM/tsrm_virtual_cwd.h
@@ -47,6 +47,7 @@
typedef unsigned short mode_t;
#define DEFAULT_SLASH '\\'
+#define DEFAULT_DIR_SEPARATOR ';'
#define IS_SLASH(c) ((c) == '/' || (c) == '\\')
#define COPY_WHEN_ABSOLUTE 2
#define IS_ABSOLUTE_PATH(path, len) \
@@ -60,6 +61,7 @@ typedef unsigned short mode_t;
#endif
#define DEFAULT_SLASH '/'
+#define DEFAULT_DIR_SEPARATOR ':'
#define IS_SLASH(c) ((c) == '/')
#endif