home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume4 / fcpio / math.h < prev    next >
Text File  |  1989-02-03  |  154b  |  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.