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

10 lines
135 B
C

#include <sys/stat.h>
#include "libc.h"
int __fxstat(int ver, int fd, struct stat *buf)
{
return fstat(fd, buf);
}
LFS64(__fxstat);