/* * fputc.c - print an unsigned character */ /* $Header$ */ #include int fputc(int c, FILE *stream) { return putc(c, stream); }