]> pd.if.org Git - pdclib/commitdiff
Unnecessary due to makro replacement.
authorsolar <unknown>
Fri, 30 Jun 2006 10:01:10 +0000 (10:01 +0000)
committersolar <unknown>
Fri, 30 Jun 2006 10:01:10 +0000 (10:01 +0000)
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