mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
17 lines
244 B
C
17 lines
244 B
C
/*
|
|
*
|
|
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
extern void console_putstring(const char *s);
|
|
extern int console_putchar(int c);
|
|
|
|
int puts(const char * s)
|
|
{
|
|
console_putstring(s);
|
|
console_putchar('\n');
|
|
|
|
return -1;
|
|
}
|