12 lines
162 B
C
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);
|
|
}
|