The Quake III Arena sources as originally released under the GPL license on August 20, 2005.
This commit is contained in:
commit
dbe4ddb103
1409 changed files with 806066 additions and 0 deletions
14
lcc/include/sparc/solaris/assert.h
Normal file
14
lcc/include/sparc/solaris/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 void __assert(char *, char *, unsigned);
|
||||
#define assert(e) ((void)((e)||(__assert(#e, __FILE__, __LINE__),0)))
|
||||
#endif /* NDEBUG */
|
Loading…
Add table
Add a link
Reference in a new issue