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_getc_unlocked( FILE * stream )
16 return _PDCLIB_fgetc_unlocked( stream );
19 int getc( FILE * stream )
21 return fgetc( stream );
27 #include <_PDCLIB_test.h>
31 /* Testing covered by ftell.c */