9 lines
93 B
C
9 lines
93 B
C
#ifndef ASSERT_H
|
|
#define ASSERT_H
|
|
|
|
void assert(bool b);
|
|
|
|
#pragma compile("assert.c")
|
|
|
|
#endif
|