home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 10 / Fresh_Fish_10_2352.bin / useful / util / edit / mg / src.lzh / h / do_eval.h < prev    next >
C/C++ Source or Header  |  1990-05-23  |  283b  |  19 lines

  1. /*
  2.  * DO_EVAL turns on the eval-expression code, and related things. It's needed
  3.  * for startup files, or for Amiga REXX.
  4.  */
  5.  
  6. #include "no_startup.h"
  7.  
  8. #ifndef    NO_STARTUP
  9. #define DO_EVAL
  10. #endif
  11.  
  12. #ifdef AMIGA
  13. #include "rexx.h"
  14. #ifdef    REXX
  15. #undef    DO_EVAL
  16. #define    DO_EVAL
  17. #endif
  18. #endif
  19.