From 4f6e8bade5afe7d71ea6db73089f7634124aeec3 Mon Sep 17 00:00:00 2001 From: eban Date: Mon, 11 Apr 2005 13:30:10 +0000 Subject: * dir.c, file.c (lstat): avoid warnings for mingw. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8304 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- dir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dir.c') diff --git a/dir.c b/dir.c index b516ef2752..5289585ef0 100644 --- a/dir.c +++ b/dir.c @@ -63,8 +63,8 @@ char *strchr _((char*,char)); #include "util.h" -#ifndef HAVE_LSTAT -#define lstat(path,st) stat(path,st) +#if !defined HAVE_LSTAT && !defined lstat +#define lstat stat #endif #define FNM_NOESCAPE 0x01 -- cgit v1.2.3