minix/lib/stdio/putchar.c

13 lines
163 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
* putchar.c - print (or buffer) a character on the standard output stream
*/
/* $Header$ */
#include <stdio.h>
int
(putchar)(int c)
{
return putchar(c);
}