m4ext.c revision 4c56998a4a895e2885b4848d6753357edccb6436
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
/*
*/
#include "m4.h"
/* storage params */
/* pushback buffer */
/* arg collection buffer */
/* call stack */
/* token storage */
/* file name and current line storage for line sync and diagnostics */
/* input file stuff for "include"s */
int ifx; /* stack index */
/* stuff for output diversions */
int ofx; /* stack index */
/* comment markers */
/* quote markers */
/* argument ptr stack */
/* symbol table */
unsigned int hshval; /* last hash val */
/* misc */
char *procnam; /* argv[0] */
char *tempfile; /* used for diversion files */
int sflag; /* line sync flag */
int sysrval; /* return val from syscmd */
int trace; /* global trace flag */
int wide; /* multi-byte locale */