#include #include "putc.h" int fputc(int c, FILE *f) { return do_putc(c, f); } #ifdef TEST int main(void) { return 0; } #endif