Added __WATCOMC__ as DOS compiler.

This commit is contained in:
Guido van Rossum 1996-05-22 17:26:25 +00:00
parent 39c2aae198
commit dd197e91bf
1 changed files with 1 additions and 1 deletions

View File

@ -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 ';'