diff --git a/kernel/include/std/stdio.h b/kernel/include/std/stdio.h index 6563ab59..21c6cd64 100644 --- a/kernel/include/std/stdio.h +++ b/kernel/include/std/stdio.h @@ -2,9 +2,11 @@ #include #include -int printf(const char* fmt, ...); -int sprintf(char* __s, const char* fmt, ...); -int snprintf(char* __s, size_t max, const char* fmt, ...); +#define PRINTF_LIKE(n, m) __attribute__((format(printf, n, m))) + +int printf(const char* fmt, ...) PRINTF_LIKE(1, 2); +int sprintf(char* __s, const char* fmt, ...) PRINTF_LIKE(2, 3); +int snprintf(char* __s, size_t max, const char* fmt, ...) PRINTF_LIKE(3, 4); int vprintf(const char* fmt, va_list ap); int vsprintf(char* __s, const char* fmt, va_list ap); int vsnprintf(char* __s, size_t max, const char* fmt, va_list ap); \ No newline at end of file