5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
13 int putchar_unlocked( int c )
15 return fputc_unlocked( c, stdout );
20 return fputc( c, stdout );
26 #include <_PDCLIB_test.h>
30 /* Testing covered by ftell.c */