diff options
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h index 69c8ea0..c3ccaf2 100644 --- a/src/errors.h +++ b/src/errors.h @@ -1,6 +1,8 @@ #ifndef ORYX_ERRORS_H #define ORYX_ERRORS_H -void err(const char *, ...); +#include <stdnoreturn.h> + +noreturn void err(const char *, ...); #endif /* !ORYX_ERRORS_H */ |