home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_02 / 1002024c < prev    next >
Text File  |  1991-12-04  |  211b  |  7 lines

  1.  
  2. #define add()      (push(pop() + pop()))
  3. #define subtract() {int temp = pop(); (push(pop() - temp))}
  4. #define multiply() (push(pop() * pop()))
  5. #define divide()   {int temp = pop(); (push(pop() / temp))}
  6.  
  7.