1 #ifndef lint
2 static char sccsid[] = "@(#)mark.c	2.1 (CWI) 85/07/18";
3 #endif lint
4 #include "e.h"
5 
6 mark(p1)
7 	int p1;
8 {
9 	markline = 1;
10 	printf(".ds %d \\k(09\\*(%d\n", p1, p1);
11 	yyval = p1;
12 	dprintf(".\tmark %d\n", p1);
13 }
14 
15 lineup(p1)
16 {
17 	markline = 2;
18 	if (p1 == 0) {
19 		yyval = salloc();
20 		printf(".ds %d \\h'|\\n(09u'\n", yyval);
21 	}
22 	dprintf(".\tlineup %d\n", p1);
23 }
24