From e315cd24bed983dd7cab4f97204b0dddaad3efbd Mon Sep 17 00:00:00 2001 From: Fabian Giesen Date: Wed, 2 Oct 2024 19:11:19 -0700 Subject: [PATCH] Add prototype for new nasm_note and nasm_notef NASM compiles with errors for missing prototypes, so the missing prototype causes a compilation failure. Signed-off-by: Fabian Giesen --- include/error.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/error.h b/include/error.h index d01c4ca9..84b09b04 100644 --- a/include/error.h +++ b/include/error.h @@ -56,6 +56,8 @@ typedef uint32_t errflags; void printf_func(2, 3) nasm_error(errflags severity, const char *fmt, ...); void printf_func(1, 2) nasm_listmsg(const char *fmt, ...); void printf_func(2, 3) nasm_listmsgf(errflags flags, const char *fmt, ...); +void printf_func(1, 2) nasm_note(const char *fmt, ...); +void printf_func(2, 3) nasm_notef(errflags flags, const char *fmt, ...); void printf_func(1, 2) nasm_debug(const char *fmt, ...); void printf_func(2, 3) nasm_debugf(errflags flags, const char *fmt, ...); void printf_func(1, 2) nasm_info(const char *fmt, ...);