diff options
author | Marvin Borner | 2020-08-09 16:51:01 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-09 16:51:01 +0200 |
commit | 162d024a53e1e31e00ff0b6f47dd4590edebc551 (patch) | |
tree | 711d3886c300dfaddffdafaa89b690b45eb2101d /src/lib/inc/print.h | |
parent | 79f2fa136f26a0b87917336e089485712ee49bd6 (diff) |
Heavy restructuring of libc, kernel and apps
Diffstat (limited to 'src/lib/inc/print.h')
-rw-r--r-- | src/lib/inc/print.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/lib/inc/print.h b/src/lib/inc/print.h deleted file mode 100644 index 1a2419b..0000000 --- a/src/lib/inc/print.h +++ /dev/null @@ -1,13 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner -// I may (re)move this in the future // TODO - -#ifndef PRINT_H -#define PRINT_H - -#include <arg.h> - -int printf(const char *format, ...); -int vprintf(const char *format, va_list ap); -int vsprintf(char *str, const char *format, va_list ap); - -#endif |