* Moved lcc and q3asm into code/tools
This commit is contained in:
parent
b1cef6352e
commit
ad118b9baf
452 changed files with 0 additions and 0 deletions
14
code/tools/lcc/include/x86/linux/assert.h
Normal file
14
code/tools/lcc/include/x86/linux/assert.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef __ASSERT
|
||||
#define __ASSERT
|
||||
|
||||
void assert(int);
|
||||
|
||||
#endif /* __ASSERT */
|
||||
|
||||
#undef assert
|
||||
#ifdef NDEBUG
|
||||
#define assert(ignore) ((void)0)
|
||||
#else
|
||||
extern int _assert(char *, char *, unsigned);
|
||||
#define assert(e) ((void)((e)||_assert(#e, __FILE__, __LINE__)))
|
||||
#endif /* NDEBUG */
|
Loading…
Add table
Add a link
Reference in a new issue