12 lines
148 B
C
Executable file
12 lines
148 B
C
Executable file
/*
|
|
* putc.c - print (or buffer) one character
|
|
*/
|
|
/* $Header$ */
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
(putc)(int c, FILE *stream)
|
|
{
|
|
return putc(c, stream);
|
|
}
|