minix/lib/posix/lstat.c

14 lines
179 B
C
Raw Normal View History

/*
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);
}