finalyze moving
This commit is contained in:
14
src/SageAnalysisTool/OmegaForSage/include/Exit.h
Normal file
14
src/SageAnalysisTool/OmegaForSage/include/Exit.h
Normal file
@@ -0,0 +1,14 @@
|
||||
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)); }
|
||||
Reference in New Issue
Block a user