2025-04-27 07:49:33 -04:00

12 lines
173 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);
}