Pristine Ack-5.5
[Ack-5.5.git] / util / int / linfil.h
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         
5         For efficiency reasons the EM machine keeps its own copies of the
6         file name and the line number.
7 */
8
9 /* $Id: linfil.h,v 2.2 1994/06/24 10:47:44 ceriel Exp $ */
10
11 /* these should be EM machine registers */
12 extern long LIN;
13 extern ptr FIL;                         /* address in data[] */
14
15 #define getLIN()        (LIN)
16 #define getFIL()        (FIL)
17
18 extern char *dt_fname();
19 extern char *position();
20