From: Guido van Rossum Date: Wed, 22 May 1996 17:26:25 +0000 (+0000) Subject: Added __WATCOMC__ as DOS compiler. X-Git-Tag: v1.4b1~161 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd197e91bf842a78f03952a2c9c1f210cb8b0fe2;p=python Added __WATCOMC__ as DOS compiler. --- 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 ';'