From: solar Date: Fri, 30 Jun 2006 10:01:10 +0000 (+0000) Subject: Unnecessary due to makro replacement. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=954d8fec6aad664a9b4ac2a10b1d1a16115345e8;p=fw%2Fpdclib Unnecessary due to makro replacement. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@241 546481bc-9713-0410-bf18-d3337bbf4a3e --- 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