diff options
author | Pixel <Pixel> | 2002-08-26 15:02:15 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-08-26 15:02:15 +0000 |
commit | 6adca8421211f68f3838966cf70945d538476857 (patch) | |
tree | c8036a448e157453624bba37ece6c5ebe58737d8 /generic/Output.cpp | |
parent | 68c31dd0f98784d6b755d9f89e5b2a51d85eeddf (diff) |
Fixing some #ifdef
Diffstat (limited to 'generic/Output.cpp')
-rw-r--r-- | generic/Output.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/Output.cpp b/generic/Output.cpp index 1d7981e..55ab158 100644 --- a/generic/Output.cpp +++ b/generic/Output.cpp @@ -15,7 +15,7 @@ Output::Output(String no, int create, int trunc) throw (GeneralException) : Handle(no.strlen() ? open(no.to_charp(), O_WRONLY | (O_CREAT * (create ? 1 : 0)) | (trunc ? O_TRUNC : O_APPEND) -#ifdef __linux__ +#if defined __linux__ || defined __CYGWIN32__ , 00666 #endif ) : dup(1)), |