home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / pOSxA.lzx / pOSxA / clib / macros.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-12  |  198 b   |  9 lines

  1. #ifndef CLIB_MACROS_H
  2. #define CLIB_MACROS_H
  3.  
  4. #define MAX(a,b)   ( (a)>(b) ? (a):(b)  )
  5. #define MIN(a,b)   ( (a)<(b) ? (a):(b)  )
  6. #define ABS(x)       ( (x<0) ? (-(x)):(x) )
  7.  
  8. #endif    /* CLIB_MACROS_H */
  9.