#include <stdio.h>
#ifndef REGTEST
#include "_PDCLIB_io.h"
int _PDCLIB_putc_unlocked( int c, FILE * stream )
{
return _PDCLIB_fputc_unlocked( c, stream );
}
int putc( int c, FILE * stream )
{
return fputc( c, stream );
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
int main( void )
{
return TEST_RESULTS;
}
#endif