12 lines
163 B
C
Executable file
12 lines
163 B
C
Executable file
/*
|
|
* putchar.c - print (or buffer) a character on the standard output stream
|
|
*/
|
|
/* $Header$ */
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
(putchar)(int c)
|
|
{
|
|
return putchar(c);
|
|
}
|