home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume4 / fcpio / math.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-03  |  154 b   |  8 lines

  1. /*
  2.  * Dayton's math library definitions.
  3.  */
  4.  
  5. #define        MIN(x,y)    ((x < y) ? x : y)
  6. #define        MAX(x,y)    ((x > y) ? x : y)
  7. #define        ABS(x)        ((x < 0) ? -x : x)
  8.