mirror of
https://github.com/id-Software/Quake-III-Arena.git
synced 2026-03-20 09:00:05 +01:00
The Quake III Arena sources as originally released under the GPL license on August 20, 2005.
This commit is contained in:
14
lcc/include/mips/irix/assert.h
Normal file
14
lcc/include/mips/irix/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 */
|
||||
Reference in New Issue
Block a user