shithub: riscv

ref: ad7120b2e2f0ed0d226eec1b5ef6fc6b3eebb4ef
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;
}