diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-16 13:31:22 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-16 13:31:22 +0000 |
commit | 1c27165161308cd4fb3b7f1a63ed37970b2de815 (patch) | |
tree | 3d86dc32cea46b514bf1dfba1dff68cdc1b81af0 /TSRM | |
parent | 03b6b3715711532e486913b2da15700e27ea786c (diff) | |
download | php-git-1c27165161308cd4fb3b7f1a63ed37970b2de815.tar.gz |
Add a useful #define
Diffstat (limited to 'TSRM')
-rw-r--r-- | TSRM/tsrm_virtual_cwd.h | 2 |
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 |