forked from github/server
7 lines
135 B
C
7 lines
135 B
C
#ifndef UTIL_ASSERT_H
|
|
#define UTIL_ASSERT_H
|
|
|
|
#include <assert.h>
|
|
|
|
#define assert_alloc(expr) assert((expr) || !"out of memory")
|
|
#endif
|