readdir now returns an eof indication
[unix-history] / usr / src / old / eqn / common_source / mark.c
CommitLineData
f6227721
SL
1#ifndef lint
2static char sccsid[] = "@(#)mark.c 4.2 %G%";
3#endif
6dbf33a8
BS
4
5#include "e.h"
6
7mark(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
14lineup(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}