musl/src/stat/__fxstat.c
2012-05-31 23:32:09 -04:00

9 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);