diff options
-rw-r--r-- | Python/sysmodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index ececf72..35550ad 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -49,6 +49,10 @@ Data members: #define DELIM ' ' #endif +#ifdef MSDOS +#define DELIM ';' +#endif + #ifndef DELIM #define DELIM ':' #endif |