From 03c6f3cf458c89df17b02557cd232f9cde73ed54 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Sat, 6 Aug 2022 00:12:51 +0200 Subject: make snprintf shared; dynamic resolution support --- src/user/lib/include/stdio.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/user/lib/include') diff --git a/src/user/lib/include/stdio.h b/src/user/lib/include/stdio.h index 063c81f..4d9cf94 100644 --- a/src/user/lib/include/stdio.h +++ b/src/user/lib/include/stdio.h @@ -11,11 +11,9 @@ int printf(const char *restrict fmt, ...); int fprintf(FILE *restrict f, const char *restrict fmt, ...); -int snprintf(char *restrict str, size_t len, const char *restrict fmt, ...); int vprintf(const char *restrict fmt, va_list ap); int vfprintf(FILE *restrict f, const char *restrict fmt, va_list ap); -int vsnprintf(char *restrict str, size_t len, const char *restrict fmt, va_list ap); int _klogf(const char *fmt, ...); // for kernel debugging only -- cgit v1.2.3