1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-14 16:01:57 +02:00
Files
coreutils/lib/lstat-stub.c

14 lines
247 B
C
Raw Normal View History

2003-03-13 13:07:11 +00:00
#include <config.h>
#include <sys/stat.h>
/* A trivial substitute for `lstat'.
DJGPP 2.03 and earlier don't have `lstat' and don't support
symlinks. */
int
lstat (const char *fname, struct stat *st_buf)
2003-03-13 13:07:11 +00:00
{
return stat (fname, st_buf);
}