10 lines
87 B
C
10 lines
87 B
C
/* $Id$ */
|
|
#include <stdio.h>
|
|
|
|
#undef putchar
|
|
|
|
putchar(c)
|
|
{
|
|
return putc(c, stdout);
|
|
}
|