diff --git a/photon/libc/stdio/puts.c b/photon/libc/stdio/puts.c new file mode 100644 index 0000000..9f17894 --- /dev/null +++ b/photon/libc/stdio/puts.c @@ -0,0 +1,6 @@ +#include + +int puts(const char *str) +{ + return fputs(str, stdout); +}