5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
12 #include <_PDCLIB_io.h>
14 int _PDCLIB_putc_unlocked( int c, FILE * stream )
16 return _PDCLIB_fputc_unlocked( c, stream );
20 int putc( int c, FILE * stream )
22 return fputc( c, stream );
28 #include <_PDCLIB_test.h>
32 /* Testing covered by ftell.c */