X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fgetc.c;fp=functions%2Fstdio%2Fgetc.c;h=0000000000000000000000000000000000000000;hb=3ec5c03d5b4e06be5a4e32e31c893c7de652e8c6;hp=f7efbe5eee4086e6f701afe676f2e2f1591cce5a;hpb=39a9711ca612f89f28593438a12829ffe3dcddb6;p=pdclib diff --git a/functions/stdio/getc.c b/functions/stdio/getc.c deleted file mode 100644 index f7efbe5..0000000 --- a/functions/stdio/getc.c +++ /dev/null @@ -1,29 +0,0 @@ -/* $Id$ */ - -/* getc( void ) - - 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 - -int getc( FILE * stream ) -{ - return fgetc( stream ); -} - -#endif - -#ifdef TEST -#include <_PDCLIB_test.h> - -int main( void ) -{ - TESTCASE( NO_TESTDRIVER ); - return TEST_RESULTS; -} - -#endif