]> pd.if.org Git - pdclib/blobdiff - functions/stdio/ungetc.c
Comment cleanups.
[pdclib] / functions / stdio / ungetc.c
index f85ca9ce96344f423a096807ce6a42cbafc22acc..dd0295917e4af81cdee2334f33e4a90f73656e8e 100644 (file)
@@ -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 )
     {