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