summaryrefslogtreecommitdiff
path: root/src/stdio/puts.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/puts.c')
-rw-r--r--src/stdio/puts.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/puts.c b/src/stdio/puts.c
index 9e6c4c5b..93b98c3f 100644
--- a/src/stdio/puts.c
+++ b/src/stdio/puts.c
@@ -2,6 +2,7 @@
#include "_stdio.h"
/** write a string to stoud **/
+
int puts(const char *s)
{
int ret = 1;
@@ -34,6 +35,7 @@ int puts(const char *s)
function writes the string pointed to by ARGUMENT(s) to IDENTIFIER(stdout),
followed by a newline. The terminated CHAR(\0) is not written.
***/
+
/*
STDC(1)
*/