From e11d9bd655d5684bdb99b0af9be6e054837f0f17 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Fri, 1 May 2020 20:39:31 +0100 Subject: [PATCH] Added puts() --- photon/libc/stdio/puts.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 photon/libc/stdio/puts.c 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); +}