X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffseek.c;h=a24a608b7ca8b54f4c1b45b3926a0f6d9da6c20a;hb=refs%2Fheads%2Fbranches%2Fdefault;hp=44cc6fbf86a8ca2f8a80bbace841f84ebd3453ad;hpb=202af43c19ec4f5f1d1b2827a7ef0b46abfebed5;p=pdclib diff --git a/functions/stdio/fseek.c b/functions/stdio/fseek.c index 44cc6fb..a24a608 100644 --- a/functions/stdio/fseek.c +++ b/functions/stdio/fseek.c @@ -1,6 +1,4 @@ -/* $Id$ */ - -/* 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. @@ -9,7 +7,7 @@ #include #ifndef REGTEST -#include <_PDCLIB_io.h> +#include "_PDCLIB_io.h" int _PDCLIB_fseek_unlocked( FILE * stream, long loffset, int whence ) { @@ -47,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 )