EMILE/libunix/puts.c

17 lines
237 B
C
Raw Normal View History

2005-11-12 21:30:19 +00:00
/*
*
* (c) 2004,2005 Laurent Vivier <Laurent@Vivier.EU>
2005-11-12 21:30:19 +00:00
*
*/
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;
}