From aa3c168b9f3da0cfaa8f4232dd0c438369a5bb97 Mon Sep 17 00:00:00 2001 From: yugui Date: Sat, 4 Oct 2008 13:33:22 +0000 Subject: * dln.c: Ruby no longer supports MS-DOS. * ext/sdbm/_sdbm.c: ditto. * ext/sdbm/sdbm.h: ditto. * gc.c: ditto. * hash.c: ditto. * include/ruby/defines.h: ditto. * include/ruby/util.h: ditto. * io.c: ditto. * process.c: ditto. * ruby.c: ditto. * strftime.c: ditto. * util.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19679 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/sdbm/_sdbm.c | 6 +++--- ext/sdbm/sdbm.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'ext') diff --git a/ext/sdbm/_sdbm.c b/ext/sdbm/_sdbm.c index 1d8177819..5668c2c18 100644 --- a/ext/sdbm/_sdbm.c +++ b/ext/sdbm/_sdbm.c @@ -103,7 +103,7 @@ static int duppair proto((char *, datum)); /* * externals */ -#if !defined sun && !defined MSDOS && !defined _WIN32 && !defined __CYGWIN__ && !defined(errno) +#if !defined sun && !defined _WIN32 && !defined __CYGWIN__ && !defined(errno) extern int errno; #endif @@ -338,7 +338,7 @@ makroom(register DBM *db, long int hash, int need) { long newp; char twin[PBLKSIZ]; -#if defined MSDOS || (defined _WIN32 && !defined __CYGWIN__) +#if defined _WIN32 && !defined __CYGWIN__ char zer[PBLKSIZ]; long oldtail; #endif @@ -365,7 +365,7 @@ makroom(register DBM *db, long int hash, int need) * here, as sdbm_store will do so, after it inserts the incoming pair. */ -#if defined MSDOS || (defined _WIN32 && !defined __CYGWIN__) +#if defined _WIN32 && !defined __CYGWIN__ /* * Fill hole with 0 if made it. * (hole is NOT read as 0) diff --git a/ext/sdbm/sdbm.h b/ext/sdbm/sdbm.h index ce8f54c4d..0c7ed1ba9 100644 --- a/ext/sdbm/sdbm.h +++ b/ext/sdbm/sdbm.h @@ -52,7 +52,7 @@ typedef struct { extern datum nullitem; -#if defined(__STDC__) || defined(MSDOS) +#if defined(__STDC__) #define proto(p) p #else #define proto(p) () -- cgit