EMILE/libunix/putchar.c

13 lines
154 B
C
Raw Normal View History

2005-11-12 21:30:19 +00:00
/*
*
* (c) 2004,2005 Laurent Vivier <Laurent@Vivier.EU>
2005-11-12 21:30:19 +00:00
*
*/
2005-11-08 02:04:54 +00:00
extern int console_putchar(int c);
int putchar (int c)
{
return console_putchar(c);
}