summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-05 09:40:41 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-05 09:40:41 +0000
commit35d07e3fe84bfce6dbd256f70e250d822261dae1 (patch)
tree0289319f36226f230951dd2a0af77c05c2c7db21 /include
parent9e557661c24d13051b6ef180028cc173433e6b2e (diff)
merges r25092 from trunk into ruby_1_9_1.
-- * win32/win32.c, include/ruby/win32.h (rb_w32_access): new function to replace MSVCRT's access(). [ruby-core:25761] * file.c (eaccess): workaround for recent MSVCRT is no longer needed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@26017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/win32.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ruby/win32.h b/include/ruby/win32.h
index c8da5044ae..fd654e4592 100644
--- a/include/ruby/win32.h
+++ b/include/ruby/win32.h
@@ -196,6 +196,7 @@ extern DWORD rb_w32_osid(void);
extern int rb_w32_stat(const char *, struct stat *);
extern int rb_w32_fstat(int, struct stat *);
#endif
+#define access(path,mode) rb_w32_access(path,mode)
#define strcasecmp stricmp
#define strncasecmp strnicmp
@@ -266,6 +267,7 @@ extern int rb_w32_mkdir(const char *, int);
extern int rb_w32_rmdir(const char *);
extern int rb_w32_unlink(const char *);
extern int rb_w32_stati64(const char *, struct stati64 *);
+extern int rb_w32_access(const char *, int);
#ifdef __BORLANDC__
extern int rb_w32_fstati64(int, struct stati64 *);