X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=platform%2Faltos%2Ffunctions%2Fstdio%2Fungetc.c;fp=platform%2Faltos%2Ffunctions%2Fstdio%2Fungetc.c;h=e7a43156984395f92a7975ca1bb888c322d36ec2;hb=aca4bf7601bc9aa2a80b71c435166c15968e142a;hp=0000000000000000000000000000000000000000;hpb=4348b127b85c6d8f8fb870635c30a42bfa20d689;p=fw%2Fpdclib diff --git a/platform/altos/functions/stdio/ungetc.c b/platform/altos/functions/stdio/ungetc.c new file mode 100644 index 0000000..e7a4315 --- /dev/null +++ b/platform/altos/functions/stdio/ungetc.c @@ -0,0 +1,31 @@ +/* $Id$ */ + +/* ungetc( int, FILE * ) + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +#include + +#ifndef REGTEST + +extern int PDCLIB_NO_ACTUAL_STDIO(); + +int ungetc( int c, struct _PDCLIB_file_t * stream ) +{ + return PDCLIB_NO_ACTUAL_STDIO(); +} + +#endif + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main( void ) +{ + /* Testing covered by ftell.c */ + return TEST_RESULTS; +} + +#endif