finish moving 32-bit-specific junk out of source files.
[musl] / src / stat / lstat.c
index afdb553..3b22e62 100644 (file)
@@ -4,7 +4,7 @@
 
 int lstat(const char *path, struct stat *buf)
 {
-       return syscall2(__NR_lstat64, (long)path, (long)buf);
+       return syscall2(__NR_lstat, (long)path, (long)buf);
 }
 
 LFS64(lstat);