Pre-define MS-DOS separator

This commit is contained in:
Guido van Rossum 1991-05-05 20:07:59 +00:00
parent eba1b5efe1
commit 175a9ea8c8
1 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define SEP ':'
#endif
#ifdef MSDOS
#define SEP '\\'
#endif
#ifndef SEP
#define SEP '/'
#endif