Added puts()
This commit is contained in:
6
photon/libc/stdio/puts.c
Normal file
6
photon/libc/stdio/puts.c
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int puts(const char *str)
|
||||||
|
{
|
||||||
|
return fputs(str, stdout);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user