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