xref: /minix3/lib/libc/stdio/putc.c (revision b6cbf7203b080219de306404f8022a65b7884f33)
1 /*
2  * putc.c - print (or buffer) one character
3  */
4 /* $Header$ */
5 
6 #include	<stdio.h>
7 
8 int
9 (putc)(int c, FILE *stream)
10 {
11 	return putc(c, stream);
12 }
13