]> begriffs open source - libnonstd/blob - include/nonstd/assert.h
Remove bashism
[libnonstd] / include / nonstd / assert.h
1 #ifndef NONSTD_ASSERT_H
2 #define NONSTD_ASSERT_H
3
4 #include "internal/debugbreak.h"
5
6 #define assert(c) ((c) ? (void)0 : debug_break())
7
8 #endif