1*0Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 2*0Sstevel@tonic-gate /* All Rights Reserved */ 3*0Sstevel@tonic-gate 4*0Sstevel@tonic-gate 5*0Sstevel@tonic-gate /* 6*0Sstevel@tonic-gate * Copyright (c) 1980 Regents of the University of California. 7*0Sstevel@tonic-gate * All rights reserved. The Berkeley software License Agreement 8*0Sstevel@tonic-gate * specifies the terms and conditions for redistribution. 9*0Sstevel@tonic-gate */ 10*0Sstevel@tonic-gate 11*0Sstevel@tonic-gate /* 12*0Sstevel@tonic-gate * Copyright (c) 1983, 1984 1985, 1986, 1987, 1988, Sun Microsystems, Inc. 13*0Sstevel@tonic-gate * All Rights Reserved. 14*0Sstevel@tonic-gate */ 15*0Sstevel@tonic-gate 16*0Sstevel@tonic-gate #ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.1 */ 17*0Sstevel@tonic-gate 18*0Sstevel@tonic-gate #include "e.h" 19*0Sstevel@tonic-gate 20*0Sstevel@tonic-gate mark(p1) int p1; { 21*0Sstevel@tonic-gate markline = 1; 22*0Sstevel@tonic-gate printf(".ds %d \\k(97\\*(%d\n", p1, p1); 23*0Sstevel@tonic-gate yyval = p1; 24*0Sstevel@tonic-gate if(dbg)printf(".\tmark %d\n", p1); 25*0Sstevel@tonic-gate } 26*0Sstevel@tonic-gate 27*0Sstevel@tonic-gate lineup(p1) { 28*0Sstevel@tonic-gate markline = 1; 29*0Sstevel@tonic-gate if (p1 == 0) { 30*0Sstevel@tonic-gate yyval = oalloc(); 31*0Sstevel@tonic-gate printf(".ds %d \\h'|\\n(97u'\n", yyval); 32*0Sstevel@tonic-gate } 33*0Sstevel@tonic-gate if(dbg)printf(".\tlineup %d\n", p1); 34*0Sstevel@tonic-gate } 35