X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffseek.c;h=6f56b6ef4ad894ded3ce4cfa4adf7664c4b746ad;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=ab6679bfb7ae590336b16abcb722ecd66971bfc6;hpb=a7a8d2f1c85c2d7760d4d3479e90466cc3a81b04;p=pdclib diff --git a/functions/stdio/fseek.c b/functions/stdio/fseek.c index ab6679b..6f56b6e 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. @@ -10,7 +8,7 @@ #ifndef REGTEST -#include <_PDCLIB_glue.h> +#include "_PDCLIB_glue.h" int fseek( struct _PDCLIB_file_t * stream, long offset, int whence ) { @@ -32,7 +30,7 @@ int fseek( struct _PDCLIB_file_t * stream, long offset, int whence ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" #include int main( void )