From 41ee6b43c89ce67808a684ba67f69e964b0636fa Mon Sep 17 00:00:00 2001 From: aqua Date: Sat, 18 Feb 2023 10:12:24 +0200 Subject: Move C stdlib to lib/libk --- lib/stdio/printf.c | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 lib/stdio/printf.c (limited to 'lib/stdio/printf.c') diff --git a/lib/stdio/printf.c b/lib/stdio/printf.c deleted file mode 100644 index 4efc1ac..0000000 --- a/lib/stdio/printf.c +++ /dev/null @@ -1,11 +0,0 @@ -#include - -int -printf(const char *restrict format, ...) -{ - va_list ap; - va_start(ap, format); - int c = vfprintf(stdout, format, ap); - va_end(ap); - return c; -} -- cgit v1.2.1