all printf variants: fix argument type handling for %c and %lc
[musl] / src / stdio / fgetpos.c
index 6b45f57..392f732 100644 (file)
@@ -1,5 +1,4 @@
 #include "stdio_impl.h"
-#include "libc.h"
 
 int fgetpos(FILE *restrict f, fpos_t *restrict pos)
 {
@@ -8,5 +7,3 @@ int fgetpos(FILE *restrict f, fpos_t *restrict pos)
        *(long long *)pos = off;
        return 0;
 }
-
-LFS64(fgetpos);