minix/lib/libc/stdio/putchar.c

13 lines
163 B
C

/*
* putchar.c - print (or buffer) a character on the standard output stream
*/
/* $Header$ */
#include <stdio.h>
int
(putchar)(int c)
{
return putchar(c);
}