diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-29 19:55:58 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-29 19:55:58 +0000 |
| commit | 4c585eeddb11697fc19355b22c1b306e301ee462 (patch) | |
| tree | fc01ee575731229c6460eeebc847e3b1c904c04d /file.c | |
| parent | b05caf8dff99946adbb920171f72c0cc979d16aa (diff) | |
| download | ruby-4c585eeddb11697fc19355b22c1b306e301ee462.tar.gz ruby-4c585eeddb11697fc19355b22c1b306e301ee462.tar.xz ruby-4c585eeddb11697fc19355b22c1b306e301ee462.zip | |
* file.c (eaccess): workaround for VC++8 runtime.
* win32/win32.c (ioinfo): VC++8 support.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
| -rw-r--r-- | file.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -884,6 +884,9 @@ eaccess(path, mode) return -1; #else +# if _MSC_VER >= 1400 + mode &= 6; +# endif return access(path, mode); #endif } |
