Unnecessary due to makro replacement.
authorsolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Fri, 30 Jun 2006 10:01:10 +0000 (10:01 +0000)
committersolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Fri, 30 Jun 2006 10:01:10 +0000 (10:01 +0000)
git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@241 546481bc-9713-0410-bf18-d3337bbf4a3e

functions/stdio/putchar.c [deleted file]

diff --git a/functions/stdio/putchar.c b/functions/stdio/putchar.c
deleted file mode 100644 (file)
index e5a3500..0000000
+++ /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 <stdio.h>
-
-#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