]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/getc.c
Minimize the amount of internal definitions which get exposed via the user-visible...
[pdclib.old] / functions / stdio / getc.c
index a459c22abbc50fd3a35c7b01ceb33e861bfce980..e733d0b087b07368932cae511c067226de0f319e 100644 (file)
 
 #ifndef REGTEST
 
-int getc( struct _PDCLIB_file_t * stream )
+int getc_unlocked( FILE * stream )
+{
+    return fgetc_unlocked( stream );
+}
+
+int getc( FILE * stream )
 {
     return fgetc( stream );
 }