diff options
author | Guido van Rossum <guido@python.org> | 1996-05-22 17:26:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-22 17:26:25 (GMT) |
commit | dd197e91bf842a78f03952a2c9c1f210cb8b0fe2 (patch) | |
tree | 4ff48527070d16b4d09128275c735a32412687a4 /Include/osdefs.h | |
parent | 39c2aae19807c4275616655912661a4710768405 (diff) | |
download | cpython-dd197e91bf842a78f03952a2c9c1f210cb8b0fe2.zip cpython-dd197e91bf842a78f03952a2c9c1f210cb8b0fe2.tar.gz cpython-dd197e91bf842a78f03952a2c9c1f210cb8b0fe2.tar.bz2 |
Added __WATCOMC__ as DOS compiler.
Diffstat (limited to 'Include/osdefs.h')
-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 0c279f2..8a6b741 100644 --- a/Include/osdefs.h +++ b/Include/osdefs.h @@ -37,7 +37,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define DELIM '\n' #endif -#if defined(MSDOS) || defined(NT) || defined(__BORLANDC__) +#if defined(MSDOS) || defined(NT) || defined(__BORLANDC__) || defined(__WATCOMC__) #define SEP '\\' #define MAXPATHLEN 256 #define DELIM ';' |