X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffseek.c;h=a24a608b7ca8b54f4c1b45b3926a0f6d9da6c20a;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hp=72fe951d22d0f917f53849275349d3cb61f50aa1;hpb=e1c526e9bad3f6e69391e94059096145390508d3;p=pdclib diff --git a/functions/stdio/fseek.c b/functions/stdio/fseek.c index 72fe951..a24a608 100644 --- a/functions/stdio/fseek.c +++ b/functions/stdio/fseek.c @@ -1,4 +1,4 @@ -/* fseek( FILE *, long offset, int ) +/* fseek( FILE *, long, int ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -7,7 +7,7 @@ #include #ifndef REGTEST -#include <_PDCLIB_io.h> +#include "_PDCLIB_io.h" int _PDCLIB_fseek_unlocked( FILE * stream, long loffset, int whence ) { @@ -45,7 +45,7 @@ int fseek( FILE * stream, long loffset, int whence ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" #include int main( void )