0.extr.c

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 31 行

C
31
字号
#ifndef lintstatic char sccsid[] = "@(#)0.extr.c	4.1	(Berkeley)	2/11/83";#endif not lint#include <stdio.h>#include "def.h"struct lablist	{long labelt;  struct lablist *nxtlab; };struct lablist *endlab, *errlab, *reflab, *linelabs, *newlab;int nameline;			/* line number of function/subroutine st., if any */int stflag;		/* determines whether at beginning or middle of block of straight line code */int   nlabs, lswnum, swptr, flag,	 counter, p1, p3, begline, endline, r1,r2, endcom;long begchar, endchar, comchar;char *pred, *inc, *prerw, *postrw, *exp, *stcode;#define maxdo	20	/* max nesting of do loops */long dostack[maxdo];		/* labels of do nodes */int doloc[maxdo];		/* loc of do node */int doptr;struct list *FMTLST;		/* list of FMTVX's generated */struct list *ENTLST;		/* list of STLNVX nodes corresponding to entry statements */long rtnbeg;	/* number of chars up to beginning of current routine */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?