Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*
* pANS stdio -- puts
*/
#include "iolib.h"
int puts(const char *s){
fputs(s, stdout);
putchar('\n');
return ferror(stdin)?EOF:0;
}