1*779fc935Sceastha /* 2*779fc935Sceastha * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 3*779fc935Sceastha * Use is subject to license terms. 4*779fc935Sceastha */ 5*779fc935Sceastha 67c478bd9Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 77c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 87c478bd9Sstevel@tonic-gate 97c478bd9Sstevel@tonic-gate /* 107c478bd9Sstevel@tonic-gate * Copyright (c) 1980 Regents of the University of California. 117c478bd9Sstevel@tonic-gate * All rights reserved. The Berkeley software License Agreement 127c478bd9Sstevel@tonic-gate * specifies the terms and conditions for redistribution. 137c478bd9Sstevel@tonic-gate */ 147c478bd9Sstevel@tonic-gate 15*779fc935Sceastha #pragma ident "%Z%%M% %I% %E% SMI" 167c478bd9Sstevel@tonic-gate 177c478bd9Sstevel@tonic-gate #include "e.h" 187c478bd9Sstevel@tonic-gate 19*779fc935Sceastha void 20*779fc935Sceastha mark(int p1) 21*779fc935Sceastha { 227c478bd9Sstevel@tonic-gate markline = 1; 237c478bd9Sstevel@tonic-gate printf(".ds %d \\k(97\\*(%d\n", p1, p1); 247c478bd9Sstevel@tonic-gate yyval = p1; 257c478bd9Sstevel@tonic-gate if (dbg) printf(".\tmark %d\n", p1); 267c478bd9Sstevel@tonic-gate } 277c478bd9Sstevel@tonic-gate 28*779fc935Sceastha void 29*779fc935Sceastha lineup(int p1) 30*779fc935Sceastha { 317c478bd9Sstevel@tonic-gate markline = 1; 327c478bd9Sstevel@tonic-gate if (p1 == 0) { 337c478bd9Sstevel@tonic-gate yyval = oalloc(); 347c478bd9Sstevel@tonic-gate printf(".ds %d \\h'|\\n(97u'\n", yyval); 357c478bd9Sstevel@tonic-gate } 367c478bd9Sstevel@tonic-gate if (dbg) printf(".\tlineup %d\n", p1); 377c478bd9Sstevel@tonic-gate } 38