home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROS_m68k_bin.lha / AROS / include / assert.h next >
C/C++ Source or Header  |  1997-02-08  |  379b  |  18 lines

  1. #ifndef _ASSERT_H
  2. #define _ASSERT_H
  3.  
  4. /*
  5.     (C) 1995-96 AROS - The Amiga Replacement OS
  6.     $Id: assert.h,v 1.1 1996/12/13 13:51:48 digulla Exp $
  7.  
  8.     Desc: ANSI-C header file assert.h
  9.     Lang: english
  10. */
  11.  
  12. #define assert(expr) \
  13.     ((void)((expr) || __assert (#expr,__FILE__,__LINE__)))
  14.  
  15. extern void __assert (const char *, const char *, unsigned int);
  16.  
  17. #endif /* _ASSERT_H */
  18.