server/src/util/assert.h

8 lines
135 B
C
Raw Normal View History

#ifndef UTIL_ASSERT_H
#define UTIL_ASSERT_H
#include <assert.h>
#define assert_alloc(expr) assert((expr) || !"out of memory")
#endif