From a85a9d31db29e366cce9efb9c3fab24e750ed498 Mon Sep 17 00:00:00 2001 From: eban Date: Fri, 18 Aug 2000 16:46:18 +0000 Subject: eban git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/sdbm/_sdbm.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'ext') diff --git a/ext/sdbm/_sdbm.c b/ext/sdbm/_sdbm.c index a07cc55f6b..7a31472930 100644 --- a/ext/sdbm/_sdbm.c +++ b/ext/sdbm/_sdbm.c @@ -206,9 +206,7 @@ int mode; * open the files in sequence, and stat the dirfile. * If we fail anywhere, undo everything, return NULL. */ -#ifdef MSDOS flags |= O_BINARY; -#endif if ((db->pagf = open(pagname, flags, mode)) > -1) { if ((db->dirf = open(dirname, flags, mode)) > -1) { /* @@ -361,7 +359,7 @@ int need; { long newp; char twin[PBLKSIZ]; -#ifdef MSDOS +#if defined MSDOS || (defined _WIN32 && !defined __CYGWIN__) char zer[PBLKSIZ]; long oldtail; #endif @@ -388,7 +386,7 @@ int need; * here, as sdbm_store will do so, after it inserts the incoming pair. */ -#ifdef MSDOS +#if defined MSDOS || (defined _WIN32 && !defined __CYGWIN__) /* * Fill hole with 0 if made it. * (hole is NOT read as 0) -- cgit v1.2.3