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_getchar_unlocked( void )
16 return _PDCLIB_fgetc_unlocked( stdin );
22 return fgetc( stdin );
28 #include <_PDCLIB_test.h>
32 /* Testing covered by ftell.c */