isblank() implementation.
[minix.git] / lib / libc / stdio / putchar.c
blob6ed2356131e255731b9b1da73edceb9d372f3438
1 /*
2 * putchar.c - print (or buffer) a character on the standard output stream
3 */
4 /* $Header$ */
6 #include <stdio.h>
8 int
9 (putchar)(int c)
11 return putchar(c);