shithub: riscv

ref: 5a534f942cb455f76e17e2b8190d7d06eb8c5359
dir: /sys/src/ape/lib/ap/stdio/puts.c/

View raw version
/*
 * pANS stdio -- puts
 */
#include "iolib.h"
int puts(const char *s){
	fputs(s, stdout);
	putchar('\n');
	return ferror(stdin)?EOF:0;
}