summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-02-24 21:51:41 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-24 21:51:41 +0100
commit15d87fc0c7afa02d1c396ae1ea0bbef83044cf5e (patch)
tree77e0caf9a598aadf1dd34ccdf6d77b6c55cfdde2 /idlc
parent64074050b370a23fead4f92902b4194bfd6c5e8b (diff)
Remove MSDOS support
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/preproc/include.c2
-rw-r--r--idlc/source/preproc/lex.c2
-rw-r--r--idlc/source/preproc/tokens.c2
-rw-r--r--idlc/source/preproc/unix.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/idlc/source/preproc/include.c b/idlc/source/preproc/include.c
index f94f3b503..48e1a3813 100644
--- a/idlc/source/preproc/include.c
+++ b/idlc/source/preproc/include.c
@@ -25,7 +25,7 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
+#if (defined(_WIN32) || defined(__IBMC__))
# include <io.h>
#else
# include <unistd.h>
diff --git a/idlc/source/preproc/lex.c b/idlc/source/preproc/lex.c
index 522f85a91..2ca70e94d 100644
--- a/idlc/source/preproc/lex.c
+++ b/idlc/source/preproc/lex.c
@@ -28,7 +28,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
+#if (defined(_WIN32) || defined(__IBMC__))
#include <io.h>
#else
#include <unistd.h>
diff --git a/idlc/source/preproc/tokens.c b/idlc/source/preproc/tokens.c
index cb1b17f6b..23850f047 100644
--- a/idlc/source/preproc/tokens.c
+++ b/idlc/source/preproc/tokens.c
@@ -29,7 +29,7 @@
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
-#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
+#if (defined(_WIN32) || defined(__IBMC__))
#include <io.h>
#else
#include <unistd.h>
diff --git a/idlc/source/preproc/unix.c b/idlc/source/preproc/unix.c
index 23b0ae69b..8b39cdd88 100644
--- a/idlc/source/preproc/unix.c
+++ b/idlc/source/preproc/unix.c
@@ -31,7 +31,7 @@
#include <string.h>
#include <ctype.h>
#include <fcntl.h>
-#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
+#if (defined(_WIN32) || defined(__IBMC__))
#include <io.h>
#include <sys/stat.h>
#include <external/glibc/getopt.h>