]> pd.if.org Git - pdclib/blobdiff - functions/stdio/ungetc.c
Whitespace cleanups.
[pdclib] / functions / stdio / ungetc.c
index f85ca9ce96344f423a096807ce6a42cbafc22acc..dc5260b63a1a769bd37650e4be1fbad0c67f24e6 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 )
     {
@@ -22,7 +20,8 @@ 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 )
 {