From 9d7f33e08b59b74b9c19f2d8cfc1ff5077e91697 Mon Sep 17 00:00:00 2001 From: eban Date: Mon, 11 Apr 2005 13:30:10 +0000 Subject: [PATCH] * dir.c, file.c (lstat): avoid warnings for mingw. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8304 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ dir.c | 4 ++-- file.c | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 83d40e7012..cb54629a10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Apr 11 22:18:23 2005 WATANABE Hirofumi + + * dir.c, file.c (lstat): avoid warnings for mingw. + Mon Apr 11 20:11:06 2005 Hidetoshi NAGAI * ext/tcltklib/tcltklib.c (ip_finalize): adhoc patch to avoid SEGV diff --git a/dir.c b/dir.c index 30ec1822ec..da7b90ce59 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 diff --git a/file.c b/file.c index bf2fbb3954..fce522de56 100644 --- a/file.c +++ b/file.c @@ -64,8 +64,8 @@ char *strrchr _((const char*,const char)); #include #endif -#ifndef HAVE_LSTAT -#define lstat(path,st) stat(path,st) +#if !defined HAVE_LSTAT && !defined lstat +#define lstat stat #endif #if !HAVE_FSEEKO && !defined(fseeko) # define fseeko fseek