Last change
on this file since 80 was
80,
checked in by Sam Hocevar, 14 years ago
|
- Adding the Golgotha source code. Not sure what's going to be interesting
in there, but since it's all public domain, there's certainly stuff to
pick up.
|
-
Property svn:keywords set to
Id
|
File size:
487 bytes
|
Line | |
---|
1 | /**********************************************************************
|
---|
2 | *<
|
---|
3 | FILE: assert1.h
|
---|
4 |
|
---|
5 | DESCRIPTION:
|
---|
6 |
|
---|
7 | CREATED BY: Dan Silva
|
---|
8 |
|
---|
9 | HISTORY:
|
---|
10 |
|
---|
11 | *> Copyright (c) 1994, All Rights Reserved.
|
---|
12 | **********************************************************************/
|
---|
13 |
|
---|
14 | #ifdef assert
|
---|
15 | #undef assert
|
---|
16 | #endif
|
---|
17 |
|
---|
18 | #define assert( expr ) ( expr || assert1( /*#expr,*/ __LINE__, __FILE__ ) )
|
---|
19 |
|
---|
20 | extern int UtilExport assert1( /*char *expr,*/ int line, char *file );
|
---|
Note: See
TracBrowser
for help on using the repository browser.