summaryrefslogtreecommitdiff
path: root/lib/mlibc/options/glibc/include/printf.h
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:52 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 18:24:51 -0500
commitf5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch)
tree93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/glibc/include/printf.h
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/glibc/include/printf.h')
-rw-r--r--lib/mlibc/options/glibc/include/printf.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/mlibc/options/glibc/include/printf.h b/lib/mlibc/options/glibc/include/printf.h
deleted file mode 100644
index e7dd0d8..0000000
--- a/lib/mlibc/options/glibc/include/printf.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef _PRINTF_H
-#define _PRINTF_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <stddef.h>
-#include <stdarg.h>
-
-#ifndef __MLIBC_ABI_ONLY
-
-// This seems to be a glibc thing, so constants are from glibc
-size_t parse_printf_format(const char * __restrict, size_t, int * __restrict);
-
-#endif /* !__MLIBC_ABI_ONLY */
-
-enum {
- PA_INT,
- PA_CHAR,
- PA_WCHAR,
- PA_STRING,
- PA_WSTRING,
- PA_POINTER,
- PA_FLOAT,
- PA_DOUBLE,
- PA_LAST
-};
-
-#define PA_FLAG_MASK 0xff00
-#define PA_FLAG_LONG_LONG (1 << 8)
-#define PA_FLAG_LONG_DOUBLE PA_FLAG_LONG_LONG
-#define PA_FLAG_LONG (1 << 9)
-#define PA_FLAG_SHORT (1 << 10)
-#define PA_FLAG_PTR (1 << 11)
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif