diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/osdefs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Include/osdefs.h b/Include/osdefs.h index f09b88d..9383943 100644 --- a/Include/osdefs.h +++ b/Include/osdefs.h @@ -27,17 +27,26 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifdef macintosh #define SEP ':' #define MAXPATHLEN 256 +#define DELIM ' ' #endif #ifdef MSDOS #define SEP '\\' #define MAXPATHLEN 256 +#define DELIM ';' #endif +/* Filename separator */ #ifndef SEP #define SEP '/' #endif +/* Max pathname length */ #ifndef MAXPATHLEN #define MAXPATHLEN 1024 #endif + +/* Search path entry delimiter */ +#ifndef DELIM +#define DELIM ':' +#endif |