windows-nt/Source/XPSP1/NT/base/subsys/posix/programs/bsdlib/lstat.c
2020-09-26 16:20:57 +08:00

12 lines
162 B
C

#include <sys/types.h>
#include <sys/stat.h>
/*
* Lstat: Posix Implementation DF_AJ
*/
int lstat (char *path, struct stat *buf)
{
return stat (path, buf);
}