pxe: Fix recognition of keeppxe option
[syslinux.git] / com32 / lib / puts.c
blob6028543aa4a2f5cab601826fe728c7fc76b3600f
1 /*
2 * puts.c
3 */
5 #include <stdio.h>
7 int puts(const char *s)
9 if (fputs(s, stdout) < 0)
10 return -1;
12 return _fwrite("\n", 1, stdout);