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_putchar_unlocked( int c )
16 return _PDCLIB_fputc_unlocked( c, stdout );
21 return fputc( c, stdout );
27 #include <_PDCLIB_test.h>
31 /* Testing covered by ftell.c */