mirror of
https://github.com/vivier/EMILE.git
synced 2025-02-03 17:29:59 +00:00
11 lines
171 B
C
11 lines
171 B
C
|
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;
|
||
|
}
|