2 Copyright 1999, Be Incorporated. All Rights Reserved.
3 This file may be used under the terms of the Be Sample Code License.
11 extern void fatalerror(const char *);
19 #define assert(a) if (!(a)) { \
20 printf("%s:%d: Failed assertion `"#a"'\n",__FILE__,__LINE__); \
21 fatalerror("Failed assertion!"); };
23 #define checkpoint printf("%s:%d: Checkpoint...\n",__FILE__,__LINE__);\