Added puts()

This commit is contained in:
Max Wash
2020-05-01 20:39:31 +01:00
parent f7fc9ef510
commit e11d9bd655

6
photon/libc/stdio/puts.c Normal file
View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int puts(const char *str)
{
return fputs(str, stdout);
}