X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputchar.c;fp=functions%2Fstdio%2Fputchar.c;h=0000000000000000000000000000000000000000;hb=1a397ae71f2da5248058dc1cbf7e0f91cb35f337;hp=e5a3500fa5c756d12a713f93f18a8cdd0ccb8d1c;hpb=f603f88b4456cf9b7ab1328bf657ede22a0c9940;p=pdclib diff --git a/functions/stdio/putchar.c b/functions/stdio/putchar.c deleted file mode 100644 index e5a3500..0000000 --- a/functions/stdio/putchar.c +++ /dev/null @@ -1,29 +0,0 @@ -/* $Id$ */ - -/* putchar( int ) - - 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 putchar( int c ) -{ - return fputc( c, stdout ); -} - -#endif - -#ifdef TEST -#include <_PDCLIB_test.h> - -int main( void ) -{ - TESTCASE( NO_TESTDRIVER ); - return TEST_RESULTS; -} - -#endif