]> 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 9338bafaa11114266bdb01a00bc67e577a721111..e733d0b087b07368932cae511c067226de0f319e 100644 (file)
 
 #ifndef REGTEST
 
-int getc_unlocked( struct _PDCLIB_file_t * stream )
+int getc_unlocked( FILE * stream )
 {
     return fgetc_unlocked( stream );
 }
 
-int getc( struct _PDCLIB_file_t * stream )
+int getc( FILE * stream )
 {
     return fgetc( stream );
 }