mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
clean up some duplicate symbols
This commit is contained in:
parent
d8e6bf9cb6
commit
5eba9f155e
3 changed files with 4 additions and 10 deletions
|
@ -368,7 +368,7 @@ struct function_s
|
|||
int parm_ofs[MAX_PARMS]; // allways contiguous, right?
|
||||
};
|
||||
|
||||
function_t *pr_functions;
|
||||
extern function_t *pr_functions;
|
||||
|
||||
//
|
||||
// output generated by prog parsing
|
||||
|
|
|
@ -27,15 +27,6 @@ static const char rcsid[] =
|
|||
|
||||
#include "qfcc.h"
|
||||
|
||||
|
||||
pr_info_t pr;
|
||||
def_t *pr_global_defs[MAX_REGS]; // to find def for a global variable
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void
|
||||
PrecacheSound (def_t *e, int ch)
|
||||
{
|
||||
|
|
|
@ -72,6 +72,8 @@ static struct option const long_options[] =
|
|||
char destfile[1024];
|
||||
char debugfile[1024];
|
||||
|
||||
pr_info_t pr;
|
||||
|
||||
float pr_globals[MAX_REGS];
|
||||
int numpr_globals;
|
||||
|
||||
|
@ -82,6 +84,7 @@ dstatement_t statements[MAX_STATEMENTS];
|
|||
int numstatements;
|
||||
int statement_linenums[MAX_STATEMENTS];
|
||||
|
||||
function_t *pr_functions;
|
||||
dfunction_t functions[MAX_FUNCTIONS];
|
||||
int numfunctions;
|
||||
|
||||
|
|
Loading…
Reference in a new issue