Skip to content
Snippets Groups Projects
assert.h 210 B
Newer Older
Nagy Tibor's avatar
Nagy Tibor committed
#ifndef _BITS_ASSERT_H
#define _BITS_ASSERT_H

#ifdef NDEBUG
# define assert(cond) (void) 0
Nagy Tibor's avatar
Nagy Tibor committed
#else
# define assert(cond) \
  ((void)((cond) || (__assert(__func__, __FILE__, __LINE__, #cond), 0)))
Nagy Tibor's avatar
Nagy Tibor committed
#endif

#endif