mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-24 13:31:04 +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;
|
|
}
|