remove inclusion guard hacks for sys/kd.h
[musl] / src / stdio / fgetpos.c
index 5b663d1..6eb361e 100644 (file)
@@ -1,10 +1,10 @@
 #include "stdio_impl.h"
 
-int fgetpos(FILE *f, fpos_t *pos)
+int fgetpos(FILE *restrict f, fpos_t *restrict pos)
 {
        off_t off = __ftello(f);
        if (off < 0) return -1;
-       *(off_t *)pos = off;
+       *(long long *)pos = off;
        return 0;
 }