From 954d8fec6aad664a9b4ac2a10b1d1a16115345e8 Mon Sep 17 00:00:00 2001 From: solar Date: Fri, 30 Jun 2006 10:01:10 +0000 Subject: [PATCH] Unnecessary due to makro replacement. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@241 546481bc-9713-0410-bf18-d3337bbf4a3e --- functions/stdio/putchar.c | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 functions/stdio/putchar.c 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 -- 2.47.2