diff options
Diffstat (limited to 'rdbmaker/source')
-rw-r--r-- | rdbmaker/source/codemaker/global.cxx | 2 | ||||
-rw-r--r-- | rdbmaker/source/rdbmaker/rdbmaker.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/rdbmaker/source/codemaker/global.cxx b/rdbmaker/source/codemaker/global.cxx index a7cafd333c33..6cf654412f7a 100644 --- a/rdbmaker/source/codemaker/global.cxx +++ b/rdbmaker/source/codemaker/global.cxx @@ -33,7 +33,7 @@ #include <stdlib.h> #include <stdio.h> -#if defined(SAL_W32) || defined(SAL_OS2) +#if defined(SAL_W32) #include <io.h> #include <direct.h> #include <errno.h> diff --git a/rdbmaker/source/rdbmaker/rdbmaker.cxx b/rdbmaker/source/rdbmaker/rdbmaker.cxx index d9d5b4b506e7..b20043ea6f2a 100644 --- a/rdbmaker/source/rdbmaker/rdbmaker.cxx +++ b/rdbmaker/source/rdbmaker/rdbmaker.cxx @@ -34,7 +34,7 @@ #include <rtl/strbuf.hxx> -#if defined(SAL_W32) || defined(SAL_OS2) +#if defined(SAL_W32) #include <io.h> #include <direct.h> #include <errno.h> @@ -226,7 +226,7 @@ OString createFileName(const OString& path) continue; } -#if defined(SAL_UNX) || defined(SAL_OS2) +#if defined(SAL_UNX) if (mkdir((char*)nameBuffer.getStr(), 0777) == -1) #else if (mkdir((char*)nameBuffer.getStr()) == -1) @@ -297,7 +297,7 @@ sal_Bool produceAllTypes(const OString& typeName, } -#if (defined UNX) || (defined OS2) +#if (defined UNX) int main( int argc, char * argv[] ) #else int _cdecl main( int argc, char * argv[] ) |