/* * putc.c - print (or buffer) one character */ /* $Id$ */ #include int(putc)(int c, FILE* stream) { return putc(c, stream); }