[Libreoffice-commits] .: idlc/source
Thomas Arnhold
tarnhold at kemper.freedesktop.org
Thu Feb 24 12:51:40 PST 2011
idlc/source/preproc/include.c | 2 +-
idlc/source/preproc/lex.c | 2 +-
idlc/source/preproc/tokens.c | 2 +-
idlc/source/preproc/unix.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 15d87fc0c7afa02d1c396ae1ea0bbef83044cf5e
Author: Thomas Arnhold <thomas at arnhold.org>
Date: Thu Feb 24 21:51:41 2011 +0100
Remove MSDOS support
diff --git a/idlc/source/preproc/include.c b/idlc/source/preproc/include.c
index f94f3b5..48e1a38 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 522f85a..2ca70e9 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 cb1b17f..23850f0 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 23b0ae6..8b39cdd 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>
More information about the Libreoffice-commits
mailing list