9 lines
135 B
C
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);
|