Defined path delimiter for MS-DOS as semicolon

This commit is contained in:
Guido van Rossum 1991-05-05 20:14:35 +00:00
parent 541c8c0b2e
commit eb4361af6c

View file

@ -49,6 +49,10 @@ Data members:
#define DELIM ' ' #define DELIM ' '
#endif #endif
#ifdef MSDOS
#define DELIM ';'
#endif
#ifndef DELIM #ifndef DELIM
#define DELIM ':' #define DELIM ':'
#endif #endif