summaryrefslogtreecommitdiff
path: root/include/kernel/vsprintf.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/kernel/vsprintf.h')
-rw-r--r--include/kernel/vsprintf.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/kernel/vsprintf.h b/include/kernel/vsprintf.h
deleted file mode 100644
index 08297d6..0000000
--- a/include/kernel/vsprintf.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * vsprintf.h
- *
- * A very basic implmentation of thr vsprintf function
- */
-
-#ifndef _VSPRINTF_H
-#define _VSPRINTF_H
-
-#include <stdarg.h>
-
-int vsprintf(char*, char*, va_list);
-
-#endif