EMILE/libunix/putchar.c

13 lines
161 B
C
Raw Normal View History

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