This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

14 lines
147 B
C

/*
* puts.c
*/
#include <stdio.h>
int puts(const char *s)
{
if ( fputs(s, stdout) < 0 )
return -1;
return _fwrite("\n", 1, stdout);
}