summaryrefslogtreecommitdiffstats
path: root/Include/osdefs.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-22 17:26:25 (GMT)
committerGuido van Rossum <guido@python.org>1996-05-22 17:26:25 (GMT)
commitdd197e91bf842a78f03952a2c9c1f210cb8b0fe2 (patch)
tree4ff48527070d16b4d09128275c735a32412687a4 /Include/osdefs.h
parent39c2aae19807c4275616655912661a4710768405 (diff)
downloadcpython-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.h2
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 ';'