home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 2: Collection B / 17Bit_Collection_B.iso / files / 1422.dms / in.adf / RPN / Source / rpn.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-06-04  |  268 b   |  16 lines

  1. /*--------------------------------*
  2.  | File: RPN.c - MLO 900131 V1.00 |
  3.  | This is the RPN main procedure |
  4.  *--------------------------------*/
  5.  
  6. #include "rpn.h"
  7. #include "global.h"
  8. #include "proto.h"
  9.  
  10. void _main()
  11. {
  12.   setup();
  13.   mainloop();
  14.   cleanup(SYS_NORMAL);
  15. }
  16.