aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdio/puts.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/libc/stdio/puts.c')
-rw-r--r--src/userspace/libc/stdio/puts.c9
1 files changed, 0 insertions, 9 deletions
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 <stdint.h>
-#include <stdio.h>
-#include <string.h>
-
-void puts(char *data)
-{
- for (u32 i = 0; i < strlen(data); i++)
- putch(data[i]);
-} \ No newline at end of file