windows-nt/Source/XPSP1/NT/base/subsys/posix/programs/bsdlib/lstat.c

12 lines
162 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include <sys/types.h>
#include <sys/stat.h>
/*
* Lstat: Posix Implementation DF_AJ
*/
int lstat (char *path, struct stat *buf)
{
return stat (path, buf);
}