aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/printf.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/include/printf.h')
-rw-r--r--kernel/include/printf.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/kernel/include/printf.h b/kernel/include/printf.h
deleted file mode 100644
index b4e1c1b..0000000
--- a/kernel/include/printf.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#pragma once
-
-#include <stddef.h>
-#include <stdint.h>
-#include <stdarg.h>
-
-int snprintf(char* s, size_t n, const char* format, ...);
-int vsnprintf(char* s, size_t n, const char* format, va_list arg);
-
-/* vim: set ts=4 sw=4 tw=0 noet :*/