home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume4
/
fcpio
/
math.h
< prev
next >
Wrap
Text File
|
1989-02-03
|
154b
|
8 lines
/*
* Dayton's math library definitions.
*/
#define MIN(x,y) ((x < y) ? x : y)
#define MAX(x,y) ((x > y) ? x : y)
#define ABS(x) ((x < 0) ? -x : x)