|
Software APIs
|
Go to the documentation of this file.
5 #ifndef OPENTITAN_SW_DEVICE_LIB_BASE_FREESTANDING_ASSERT_H_
6 #define OPENTITAN_SW_DEVICE_LIB_BASE_FREESTANDING_ASSERT_H_
23 #define static_assert _Static_assert
28 #define assert(do_not_use) \
29 static_assert(false, "do not use assert(); use CHECK() instead")
31 #endif // OPENTITAN_SW_DEVICE_LIB_BASE_FREESTANDING_ASSERT_H_