From 04d3c7152c052daa230236e93f7c27c16f6027d6 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 5 Feb 1993 18:21:46 +0000 Subject: [PATCH] Changed order of declarations --- util/ass/ass00.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/util/ass/ass00.h b/util/ass/ass00.h index a30cdae74..909b3d777 100644 --- a/util/ass/ass00.h +++ b/util/ass/ass00.h @@ -144,6 +144,13 @@ struct lines { /* Used to indicate a invalid contents of opoff */ #define NO_OFF ((char *)-1) +struct loc_label { + locl_t *l_chain; /* The next label with same low order bits */ + char l_hinum; /* high bits of number of label */ + char l_defined; /* see below */ + int l_min,l_max; /* boundaries of value */ +}; + /* The structure containing procedure pertinent data */ /* Used for environment stacking for nested PRO's */ @@ -155,13 +162,6 @@ struct procstat { stat_t *s_prevstat; /* backward chain of nested procedures */ } ; -struct loc_label { - locl_t *l_chain; /* The next label with same low order bits */ - char l_hinum; /* high bits of number of label */ - char l_defined; /* see below */ - int l_min,l_max; /* boundaries of value */ -}; - /* contents of l_defined */ #define EMPTY 0 /* Empty slot */ #define NO 1 /* not defined yet */ -- 2.34.1