mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-12 19:34:40 +08:00
13 lines
247 B
C
13 lines
247 B
C
|
#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)
|
||
|
{
|
||
|
return stat (fname, st_buf);
|
||
|
}
|