summaryrefslogtreecommitdiff
path: root/missing.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-25 13:30:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-25 13:30:11 +0000
commita26039acbce7999f85757ac1ea77fafc1c0ab81c (patch)
treeea43dc09009cef7066798ff24702e1ce872643b2 /missing.h
parent06f4b438fb72e46410b0ee1337bd2efbb4813262 (diff)
* configure.in, dln.c, file.c, intern.h, missing.h (eaccess): use
system routine if provided. fixed: [ruby-core:07195] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9856 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing.h')
-rw-r--r--missing.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/missing.h b/missing.h
index 1b9ca2e20b..db37e3ae4c 100644
--- a/missing.h
+++ b/missing.h
@@ -39,6 +39,10 @@ extern char *crypt(const char *, const char *);
extern int dup2(int, int);
#endif
+#ifndef HAVE_EACCESS
+extern int eaccess(const char*, int);
+#endif
+
#ifndef HAVE_FINITE
extern int finite(double);
#endif