diff options
author | Guido van Rossum <guido@python.org> | 1997-12-05 21:39:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-12-05 21:39:25 (GMT) |
commit | 60aff2c0a61f5bdcba5d99d12cea8bb82d57b18c (patch) | |
tree | dd68b8be45d06ef299f656a4b23e2b2a2db64873 | |
parent | 61de0ac4bba91ecd3da0d31ba9fe288d45027ed9 (diff) | |
download | cpython-60aff2c0a61f5bdcba5d99d12cea8bb82d57b18c.zip cpython-60aff2c0a61f5bdcba5d99d12cea8bb82d57b18c.tar.gz cpython-60aff2c0a61f5bdcba5d99d12cea8bb82d57b18c.tar.bz2 |
Use the proper OS2 test symbol: PYOS_OS2.
-rw-r--r-- | Include/osdefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/osdefs.h b/Include/osdefs.h index 594fc10..1a00fc0 100644 --- a/Include/osdefs.h +++ b/Include/osdefs.h @@ -46,7 +46,7 @@ PERFORMANCE OF THIS SOFTWARE. /* Mod by chrish: QNX has WATCOM, but isn't DOS */ #if !defined(__QNX__) -#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__) || defined(__TOS_OS2__) +#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__) || defined(PYOS_OS2) #define SEP '\\' #define ALTSEP '/' #define MAXPATHLEN 256 |