mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
8 lines
166 B
C
8 lines
166 B
C
#ifndef LIBA_TEST_HELPERS_H
|
|
#define LIBA_TEST_HELPERS_H
|
|
|
|
#define assert_signed(type) assert((type)-1 < 0)
|
|
#define assert_unsigned(type) assert((type)-1 >= 0)
|
|
|
|
#endif
|