X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fgetc.c;h=7898edfb04b56d74a18630aa2a25e25a8a9a905e;hb=36ba0291514888662188f6a64fe34e9acad1c298;hp=e733d0b087b07368932cae511c067226de0f319e;hpb=0a419d48138f1411d6e3e50a367b9ece5a2cf893;p=pdclib diff --git a/functions/stdio/getc.c b/functions/stdio/getc.c index e733d0b..7898edf 100644 --- a/functions/stdio/getc.c +++ b/functions/stdio/getc.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* getc( FILE * ) This file is part of the Public Domain C Library (PDCLib). @@ -9,10 +7,11 @@ #include #ifndef REGTEST - -int getc_unlocked( FILE * stream ) +#include <_PDCLIB_io.h> + +int _PDCLIB_getc_unlocked( FILE * stream ) { - return fgetc_unlocked( stream ); + return _PDCLIB_fgetc_unlocked( stream ); } int getc( FILE * stream )