]> pd.if.org Git - pdclib/blobdiff - functions/stdio/putc.c
PDCLIB-16: Add _unlocked variations of all I/O routines; move work into these versions
[pdclib] / functions / stdio / putc.c
index 60a4dba9294c296dd92fafd5c73f9d8a40ae0704..c1f3fc279eef8fae8b96fdb77db77829a7466fa5 100644 (file)
 
 #ifndef REGTEST
 
+int putc_unlocked( int c, struct _PDCLIB_file_t * stream )
+{
+    return fputc_unlocked( c, stream );
+}
+
+
 int putc( int c, struct _PDCLIB_file_t * stream )
 {
     return fputc( c, stream );