summaryrefslogtreecommitdiff
path: root/com32/lib/puts.c
blob: 6028543aa4a2f5cab601826fe728c7fc76b3600f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * puts.c
 */

#include <stdio.h>

int puts(const char *s)
{
    if (fputs(s, stdout) < 0)
	return -1;

    return _fwrite("\n", 1, stdout);
}