#16135: Removal of OS/2 support (C code and Docs)

This commit is contained in:
Jesus Cea 2012-10-05 02:27:40 +02:00
parent 14c81aba50
commit b176203dda
5 changed files with 2 additions and 29 deletions

View file

@ -9,16 +9,10 @@ extern "C" {
/* Mod by chrish: QNX has WATCOM, but isn't DOS */
#if !defined(__QNX__)
#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__) || defined(PYOS_OS2)
#if defined(PYOS_OS2) && defined(PYCC_GCC)
#define MAXPATHLEN 260
#define SEP L'/'
#define ALTSEP L'\\'
#else
#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__)
#define SEP L'\\'
#define ALTSEP L'/'
#define MAXPATHLEN 256
#endif
#define DELIM L';'
#endif
#endif