linfil.h 453 B

1234567891011121314151617181920
  1. /*
  2. This file includes all (the arbitrary) details of the implementation
  3. of the present line number and file name in the EM machine.
  4. For efficiency reasons the EM machine keeps its own copies of the
  5. file name and the line number.
  6. */
  7. /* $Id$ */
  8. /* these should be EM machine registers */
  9. extern long LIN;
  10. extern ptr FIL; /* address in data[] */
  11. #define getLIN() (LIN)
  12. #define getFIL() (FIL)
  13. extern char *dt_fname();
  14. extern char *position();