Mark noreturn functions

This commit is contained in:
Christian Göttsche
2020-09-08 14:28:15 +02:00
committed by cgzones
parent b85a31415e
commit e719a85994
17 changed files with 37 additions and 11 deletions

View File

@ -5,11 +5,13 @@
#define _GNU_SOURCE
#endif
#include "Macros.h"
#include <err.h>
#include <assert.h>
#include <stdlib.h>
void fail(void);
void fail(void) ATTR_NORETURN;
void* xMalloc(size_t size);