finish moving 32-bit-specific junk out of source files.

This commit is contained in:
Rich Felker
2011-02-15 04:12:19 -05:00
parent a5bf06c035
commit cfe373146d
12 changed files with 34 additions and 21 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
int fstat(int fd, struct stat *buf)
{
return syscall2(__NR_fstat64, fd, (long)buf);
return syscall2(__NR_fstat, fd, (long)buf);
}
LFS64(fstat);