1 /* mark.c 4.1 83/02/11 */ 2 3 #include "e.h" 4 5 mark(p1) int p1; { 6 markline = 1; 7 printf(".ds %d \\k(97\\*(%d\n", p1, p1); 8 yyval = p1; 9 if(dbg)printf(".\tmark %d\n", p1); 10 } 11 12 lineup(p1) { 13 markline = 1; 14 if (p1 == 0) { 15 yyval = oalloc(); 16 printf(".ds %d \\h'|\\n(97u'\n", yyval); 17 } 18 if(dbg)printf(".\tlineup %d\n", p1); 19 } 20