EMILE/libunix/puts.c

11 lines
171 B
C
Raw Normal View History

2005-11-08 02:04:54 +00:00
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;
}