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 | 4f6e8bade5afe7d71ea6db73089f7634124aeec3 (patch) | |
tree | 29da03613375813fde9beb122e4ffea068d5a94e /dir.c | |
parent | e3d946f2503d01f6758911d458a9b9ef50e8080c (diff) | |
download | bundler-4f6e8bade5afe7d71ea6db73089f7634124aeec3.tar.gz |
* 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
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 |