remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl] / src / misc / lockf.c
index d8f82ef..0162442 100644 (file)
@@ -1,7 +1,6 @@
 #include <unistd.h>
 #include <fcntl.h>
 #include <errno.h>
-#include "libc.h"
 
 int lockf(int fd, int op, off_t size)
 {
@@ -29,5 +28,3 @@ int lockf(int fd, int op, off_t size)
        errno = EINVAL;
        return -1;
 }
-
-LFS64(lockf);