10 lines
113 B
C
10 lines
113 B
C
|
|
#ifndef _ASSERT_H_
|
|
#define _ASSERT_H_
|
|
|
|
#include <debug.h>
|
|
|
|
#define assert(x) ASSERT(x)
|
|
|
|
#endif /* _ASSERT_H_ */
|