EMILE/libunix/putchar.c
2005-11-08 02:04:54 +00:00

7 lines
88 B
C

extern int console_putchar(int c);
int putchar (int c)
{
return console_putchar(c);
}