]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/getc.c
Namespace cleanliness: Rename all ***_unlocked functions to _PDCLIB_***_unlocked.
[pdclib.old] / functions / stdio / getc.c
index e733d0b087b07368932cae511c067226de0f319e..b0c56f4c5cf3504f63a1785e32503b5783c14a8a 100644 (file)
@@ -9,10 +9,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 )