#include <stdio.h>

#undef putchar

int putchar(int c)
{
    return(__putc(c,stdout));
}

