home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixlib36d / clib / h / assert < prev    next >
Text File  |  1994-02-26  |  436b  |  28 lines

  1. /* assert.h (c) Copyright 1990 H.Rogers */
  2.  
  3. #ifndef __ASSERT_H
  4. #define __ASSERT_H
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. #ifdef NDEBUG
  11. #define assert(x)    ()
  12. #else
  13. extern    int        __fail(char *,char *,int);
  14. #ifdef __STDC__
  15. #define assert(x)    (void)((x) ? 0 : __fail(#x,__FILE__,__LINE__))
  16. #else
  17. #define assert(x)    (void)((x) ? 0 : __fail("x",__FILE__,__LINE__))
  18. #endif
  19. #endif
  20.  
  21. extern void (assert)(int);
  22.  
  23. #ifdef __cplusplus
  24.     }
  25. #endif
  26.  
  27. #endif
  28.