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