boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

assert.h (162B)


      1 #ifndef _ASSERT_H
      2 #define _ASSERT_H
      3 void abort(void);
      4 #ifdef NDEBUG
      5 # define assert(x) ((void)0)
      6 #else
      7 # define assert(x) ((x) ? (void)0 : abort())
      8 #endif
      9 #endif