X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fgetc.c;fp=functions%2Fstdio%2Fgetc.c;h=b0c56f4c5cf3504f63a1785e32503b5783c14a8a;hb=202af43c19ec4f5f1d1b2827a7ef0b46abfebed5;hp=e733d0b087b07368932cae511c067226de0f319e;hpb=c45b8c52827f1ea733cf211045d8d5b7bedcc970;p=pdclib diff --git a/functions/stdio/getc.c b/functions/stdio/getc.c index e733d0b..b0c56f4 100644 --- a/functions/stdio/getc.c +++ b/functions/stdio/getc.c @@ -9,10 +9,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 )