13 lines
179 B
C
13 lines
179 B
C
/*
|
|
lstat.c
|
|
*/
|
|
|
|
#define stat _stat
|
|
|
|
#include <sys/stat.h>
|
|
|
|
int lstat(const char *path, struct stat *sb)
|
|
{
|
|
/* Without symlinks, lstat is equal to stat */
|
|
return stat(path, sb);
|
|
}
|