Files
semi-libc/src/stat/__xstat.c
T

10 lines
144 B
C

#include <sys/stat.h>
#include "libc.h"
int __xstat(int ver, const char *path, struct stat *buf)
{
return stat(path, buf);
}
LFS64(__xstat);