#include <stdio.h>

int fputc(int x,FILE *p)
{
    return __putc(x,p);
}
