X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2F_PDCLIB_seek.c;h=f8dac3033704b3de365298ecba9f44904301913d;hb=8894c921674bb116d0a7b8f23a55311e7a768019;hp=42c3273780fd8ec2f66027be4f9b387259c9e568;hpb=a4b64221a092c3956abf5d00592bdd5ade189f90;p=pdclib diff --git a/functions/stdio/_PDCLIB_seek.c b/functions/stdio/_PDCLIB_seek.c index 42c3273..f8dac30 100644 --- a/functions/stdio/_PDCLIB_seek.c +++ b/functions/stdio/_PDCLIB_seek.c @@ -8,8 +8,9 @@ #include #include #ifndef REGTEST +#include "_PDCLIB_io.h" -int_fast64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, +int_fast64_t _PDCLIB_seek( FILE * stream, int_fast64_t offset, int whence ) { @@ -28,7 +29,7 @@ int_fast64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {