X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffflush.c;h=5a0bc3662b57d725e3411afd6b0a2dd1e52c0617;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=b8d32ec307d45b389d3a0fa37fb79263998e9f16;hpb=393020b6e48719d27699dea6b29e53025bbd5123;p=pdclib diff --git a/functions/stdio/fflush.c b/functions/stdio/fflush.c index b8d32ec..5a0bc36 100644 --- a/functions/stdio/fflush.c +++ b/functions/stdio/fflush.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* fflush( FILE * ) This file is part of the Public Domain C Library (PDCLib). @@ -9,7 +7,8 @@ #include #ifndef REGTEST -#include <_PDCLIB_glue.h> + +#include "_PDCLIB_glue.h" extern struct _PDCLIB_file_t * _PDCLIB_filelist; @@ -38,11 +37,12 @@ int fflush( struct _PDCLIB_file_t * stream ) return _PDCLIB_flushbuffer( stream ); } } - + #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -51,4 +51,3 @@ int main( void ) } #endif -