summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-22 17:26:25 +0000
committerGuido van Rossum <guido@python.org>1996-05-22 17:26:25 +0000
commitdd197e91bf842a78f03952a2c9c1f210cb8b0fe2 (patch)
tree4ff48527070d16b4d09128275c735a32412687a4
parent39c2aae19807c4275616655912661a4710768405 (diff)
downloadcpython-git-dd197e91bf842a78f03952a2c9c1f210cb8b0fe2.tar.gz
Added __WATCOMC__ as DOS compiler.
-rw-r--r--Include/osdefs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/osdefs.h b/Include/osdefs.h
index 0c279f2776..8a6b741f7a 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 ';'