diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-01-25 13:30:11 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-01-25 13:30:11 +0000 |
| commit | 9dbd66857aefaa9fa1978d02c23f3cb9d83bc6cb (patch) | |
| tree | fef5effd6da3e90993a4aad4ca55e28c5a5b1abe /file.c | |
| parent | 224033aac997e28f38a7c679b8f6d8ad952fee3d (diff) | |
| download | ruby-9dbd66857aefaa9fa1978d02c23f3cb9d83bc6cb.tar.gz ruby-9dbd66857aefaa9fa1978d02c23f3cb9d83bc6cb.tar.xz ruby-9dbd66857aefaa9fa1978d02c23f3cb9d83bc6cb.zip | |
* configure.in, dln.c, file.c, intern.h, missing.h (eaccess): use
system routine if provided. fixed: [ruby-core:07195]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9856 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
| -rw-r--r-- | file.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -849,6 +849,7 @@ group_member(gid) # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH) #endif +#ifndef HAVE_EACCESS int eaccess(path, mode) const char *path; @@ -890,6 +891,7 @@ eaccess(path, mode) return access(path, mode); #endif } +#endif /* |
