home *** CD-ROM | disk | FTP | other *** search
- #ifndef _ASSERT_H
- #define _ASSERT_H
-
- /*
- (C) 1995-96 AROS - The Amiga Replacement OS
- $Id: assert.h,v 1.1 1996/12/13 13:51:48 digulla Exp $
-
- Desc: ANSI-C header file assert.h
- Lang: english
- */
-
- #define assert(expr) \
- ((void)((expr) || __assert (#expr,__FILE__,__LINE__)))
-
- extern void __assert (const char *, const char *, unsigned int);
-
- #endif /* _ASSERT_H */
-