diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-11 13:30:10 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-11 13:30:10 +0000 |
commit | 9d7f33e08b59b74b9c19f2d8cfc1ff5077e91697 (patch) | |
tree | e4dfa284337a1ab48ebe3a31b6f67d40136bc0b5 /dir.c | |
parent | 4d41fb221581725e454596ac10891496b065ddf0 (diff) |
* 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
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |