Marked msg_err functions noreturn

This commit is contained in:
mkrsym1 2023-12-27 14:11:02 +02:00
parent 981a78ae53
commit 84e2c172a3
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -2,8 +2,8 @@
#include <wchar.h>
void msg_err_a(const char *format, ...);
void msg_err_w(const wchar_t *format, ...);
void __attribute__((noreturn)) msg_err_a(const char *format, ...);
void __attribute__((noreturn)) msg_err_w(const wchar_t *format, ...);
void msg_warn_a(const char *format, ...);
void msg_warn_w(const wchar_t *format, ...);