Added _Noreturn for failures

This commit is contained in:
Roman Venediktov 2024-06-30 19:22:14 +02:00
parent 33e6003bee
commit b8660e1c02
2 changed files with 3 additions and 3 deletions

View file

@ -16,6 +16,6 @@
#define WORD_SIZE (CHAR_BIT * sizeof(ptrt))
void failure (char *s, ...);
_Noreturn void failure (char *s, ...);
#endif