X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fungetc.c;h=240dc401f507088138c5ff9bfd33d2bb164beaec;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=f85ca9ce96344f423a096807ce6a42cbafc22acc;hpb=393020b6e48719d27699dea6b29e53025bbd5123;p=pdclib diff --git a/functions/stdio/ungetc.c b/functions/stdio/ungetc.c index f85ca9c..240dc40 100644 --- a/functions/stdio/ungetc.c +++ b/functions/stdio/ungetc.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* ungetc( int, FILE * ) This file is part of the Public Domain C Library (PDCLib). @@ -10,7 +8,7 @@ #ifndef REGTEST -int ungetc( int c, struct _PDCLIB_file_t * _PDCLIB_restrict stream ) +int ungetc( int c, struct _PDCLIB_file_t * stream ) { if ( c == EOF || stream->ungetidx == _PDCLIB_UNGETCBUFSIZE ) { @@ -22,7 +20,7 @@ int ungetc( int c, struct _PDCLIB_file_t * _PDCLIB_restrict stream ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {