Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
/*
2
 * pANS stdio -- puts
3
 */
4
#include "iolib.h"
5
int puts(const char *s){
6
	fputs(s, stdout);
7
	putchar('\n');
8
	return ferror(stdin)?EOF:0;
9
}