From eed77bd2970a00d1394ed027ceca5b646e4671ce Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 17 Jun 2020 18:31:46 +0200 Subject: Started rewrite --- src/userspace/libc/stdio/puts.c | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 src/userspace/libc/stdio/puts.c (limited to 'src/userspace/libc/stdio/puts.c') diff --git a/src/userspace/libc/stdio/puts.c b/src/userspace/libc/stdio/puts.c deleted file mode 100644 index 979dd0a..0000000 --- a/src/userspace/libc/stdio/puts.c +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include -#include - -void puts(char *data) -{ - for (u32 i = 0; i < strlen(data); i++) - putch(data[i]); -} \ No newline at end of file -- cgit v1.2.3