home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / ansi / assert / assert.c next >
Encoding:
C/C++ Source or Header  |  1995-03-20  |  333 b   |  27 lines

  1. #include <assert.h>
  2. #include <assert.h>
  3. #include <assert.h>
  4. #include <assert.h>
  5.  
  6. void
  7. debug(void)
  8. {
  9.   assert(1==1);
  10.   assert(1==0);
  11. }
  12.  
  13. #define NDEBUG 1
  14. #include <assert.h>
  15. #include <assert.h>
  16. #include <assert.h>
  17. #include <assert.h>
  18.  
  19. int
  20. main(void)
  21. {
  22.   assert(1==1);
  23.   assert(1==0);
  24.   debug();
  25.   return 0;
  26. }
  27.