diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-21 09:31:00 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-21 09:31:00 +0000 |
| commit | 81de6b9d54bf4fe0f7a7bd6bfb98ebd45a6b140e (patch) | |
| tree | cefa0bf8401697624442bee31e5f6087a880b489 /dir.c | |
| parent | 6e271da212126b58f586e005e2e50d0292b43e08 (diff) | |
| download | ruby-81de6b9d54bf4fe0f7a7bd6bfb98ebd45a6b140e.tar.gz ruby-81de6b9d54bf4fe0f7a7bd6bfb98ebd45a6b140e.tar.xz ruby-81de6b9d54bf4fe0f7a7bd6bfb98ebd45a6b140e.zip | |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
| -rw-r--r-- | dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -334,7 +334,7 @@ static VALUE dir_tell(dir) VALUE dir; { -#if !defined(__CYGWIN32__) && !defined(__BEOS__) +#ifdef HAVE_TELLDIR DIR *dirp; long pos; @@ -352,7 +352,7 @@ dir_seek(dir, pos) { DIR *dirp; -#if !defined(__CYGWIN32__) && !defined(__BEOS__) +#ifdef HAVE_SEEKDIR GetDIR(dir, dirp); seekdir(dirp, NUM2INT(pos)); return dir; |
