From 9dbd66857aefaa9fa1978d02c23f3cb9d83bc6cb Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 25 Jan 2006 13:30:11 +0000 Subject: * 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 --- missing.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'missing.h') diff --git a/missing.h b/missing.h index a4616950e..3f5607825 100644 --- a/missing.h +++ b/missing.h @@ -39,6 +39,10 @@ extern char *crypt _((char *, 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 -- cgit