]> pd.if.org Git - pdclib/blobdiff - functions/stdio/getc.c
Removed SVN keyword tags.
[pdclib] / functions / stdio / getc.c
index e733d0b087b07368932cae511c067226de0f319e..7898edfb04b56d74a18630aa2a25e25a8a9a905e 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* getc( FILE * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,10 +7,11 @@
 #include <stdio.h>
 
 #ifndef REGTEST
-
-int getc_unlocked( FILE * stream )
+#include <_PDCLIB_io.h>
+   
+int _PDCLIB_getc_unlocked( FILE * stream )
 {
-    return fgetc_unlocked( stream );
+    return _PDCLIB_fgetc_unlocked( stream );
 }
 
 int getc( FILE * stream )