From 1a397ae71f2da5248058dc1cbf7e0f91cb35f337 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. --- 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.40.0