*** empty log message ***
[coreutils.git] / lib / lstat-stub.c
blob07ad91f9683cef34141de04d4b8a7d8ae29b358f
1 #include <config.h>
2 #include <sys/stat.h>
4 /* A trivial substitute for `lstat'.
6 DJGPP 2.03 and earlier don't have `lstat' and don't support
7 symlinks. */
9 int
10 lstat (const char *fname, struct stat *st_buf)
12 return stat (fname, st_buf);