X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fftell.c;h=9731e33368ae23364110f22dba1421ddd1d5cc0c;hp=ba79db3b8218268efaf100027dfbedbd6759b8bc;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=202af43c19ec4f5f1d1b2827a7ef0b46abfebed5 diff --git a/functions/stdio/ftell.c b/functions/stdio/ftell.c index ba79db3..9731e33 100644 --- a/functions/stdio/ftell.c +++ b/functions/stdio/ftell.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* ftell( FILE * ) This file is part of the Public Domain C Library (PDCLib). @@ -12,7 +10,7 @@ #include #ifndef REGTEST -#include <_PDCLIB_io.h> +#include "_PDCLIB_io.h" long int _PDCLIB_ftell_unlocked( FILE * stream ) { @@ -38,10 +36,10 @@ long int ftell( FILE * stream ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" #include #ifndef REGTEST -#include <_PDCLIB_io.h> +#include "_PDCLIB_io.h" #endif int main( void )