semtimedop: fix timespec kernel ABI mismatch for 32-bit timeouts on x32
[musl] / src / stdio / fsetpos.c
index cea5ddb..779cb3c 100644 (file)
@@ -1,9 +1,6 @@
 #include "stdio_impl.h"
-#include "libc.h"
 
 int fsetpos(FILE *f, const fpos_t *pos)
 {
        return __fseeko(f, *(const long long *)pos, SEEK_SET);
 }
-
-LFS64(fsetpos);