home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0000 - 0009 / ibm0000-0009 / ibm0003.tar / ibm0003 / LCNOW2.ZIP / EXAMPLES / MACROS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-06-25  |  179 b   |  10 lines

  1. /*
  2.  * macros.h
  3.  *
  4.  * A collection of useful macro definitions.
  5.  */
  6.  
  7. #define SQR(x)  ((x) * (x))
  8. #define CUBE(x) ((x) * (x) * (x))
  9. #define QUAD(x) ((x) * (x) * (x) * (x))
  10.