blob: 52bea830b61cf5591e6bb7819205d4fa8f8841e6 [file] [log] [blame]
/*
* puts.c
*/
#include <stdio.h>
int puts(const char *s)
{
if ( fputs(s, stdout) < 0 )
return -1;
return __fwrite("\n", 1, stdout);
}