]> pd.if.org Git - pdclib/blobdiff - functions/stdio/getc.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / getc.c
index e733d0b087b07368932cae511c067226de0f319e..7a2a900d3237db8d19c3954821106cebfab3839c 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 )
@@ -23,7 +22,7 @@ int getc( FILE * stream )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {