]> pd.if.org Git - pdclib/blobdiff - functions/stdio/getc.c
PDCLIB-16: Add _unlocked variations of all I/O routines; move work into these versions
[pdclib] / functions / stdio / getc.c
index a459c22abbc50fd3a35c7b01ceb33e861bfce980..9338bafaa11114266bdb01a00bc67e577a721111 100644 (file)
 
 #ifndef REGTEST
 
+int getc_unlocked( struct _PDCLIB_file_t * stream )
+{
+    return fgetc_unlocked( stream );
+}
+
 int getc( struct _PDCLIB_file_t * stream )
 {
     return fgetc( stream );