minix/lib/stdio/putc.c

13 lines
148 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
* putc.c - print (or buffer) one character
*/
/* $Header$ */
#include <stdio.h>
int
(putc)(int c, FILE *stream)
{
return putc(c, stream);
}