Files
SAPFOR/src/SageAnalysisTool/OmegaForSage/include/Exit.h

15 lines
301 B
C
Raw Normal View History

2023-09-14 19:43:13 +03:00
void Message_Add(char * str);
void Exit(int c);
void ErrAssert(char *t);
#ifdef MIN
#undef MIN
#endif
#ifdef MAX
#undef MAX
#endif
static int inline MIN(int X, int Y) { return ((X) < (Y) ? (X) : (Y)); }
static int inline MAX(int X, int Y) { return ((X) > (Y) ? (X) : (Y)); }