16 lines
308 B
C
16 lines
308 B
C
#if !defined _MISCMACROS_H
|
|
#define _MISCMACROS_H
|
|
#if defined ___4278
|
|
#undef ___4278
|
|
#endif
|
|
#define ___4278(___2971) ((void)___2971)
|
|
#if defined MIN
|
|
#undef MIN
|
|
#endif
|
|
#if defined MAX
|
|
#undef MAX
|
|
#endif
|
|
#define MAX(X,Y) ((X) > (Y) ? (X) : (Y) )
|
|
#define MIN(X,Y) ((X) < (Y) ? (X) : (Y) )
|
|
#endif
|