1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-24 11:29:10 +00:00

Minor reordering of declarations to reduce diffs to OpenBSD/NetBSD.

This commit is contained in:
David E. O'Brien 2002-04-04 22:25:04 +00:00
parent 15ffbeb81d
commit 2c7178b5fc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93834
2 changed files with 18 additions and 17 deletions

View File

@ -49,6 +49,22 @@ __FBSDID("$FreeBSD$");
#include <string.h>
#include "defs.h"
static int nvectors;
static int nentries;
static short **froms;
static short **tos;
static short *tally;
static short *width;
static short *state_count;
static short *order;
static short *base;
static short *pos;
static int maxtable;
static short *table;
static short *check;
static int lowzero;
static int high;
static int default_goto(int);
static void free_itemsets(void);
static void free_reductions(void);
@ -77,21 +93,6 @@ static void token_actions(void);
static int increase_maxtable(int);
static const char line_format[] = "#line %d \"%s\"\n";
static int nvectors;
static int nentries;
static short **froms;
static short **tos;
static short *tally;
static short *width;
static short *state_count;
static short *order;
static short *base;
static short *pos;
static int maxtable;
static short *table;
static short *check;
static int lowzero;
static int high;
void

View File

@ -48,6 +48,8 @@ __FBSDID("$FreeBSD$");
#include <stdlib.h>
#include "defs.h"
static short *null_rules;
static void log_unused(void);
static void log_conflicts(void);
static void print_actions(int);
@ -59,8 +61,6 @@ static void print_reductions(action *, register int);
static void print_shifts(action *);
static void print_state(int);
static short *null_rules;
void
verbose()
{