fix a segmentation fault in PR_PrintStatement caused by bogus prototypes

This commit is contained in:
Bill Currie 2001-01-16 03:15:23 +00:00
parent 2e882dd198
commit bae13155b4
4 changed files with 12 additions and 14 deletions

View file

@ -143,6 +143,9 @@ void ED_PrintNum (progs_t *pr, int ent);
void ED_Count (progs_t *pr);
void PR_Profile (progs_t *pr);
char *PR_GlobalString (progs_t *pr, int ofs);
char *PR_GlobalStringNoContents (progs_t *pr, int ofs);
eval_t *GetEdictFieldValue(progs_t *pr, edict_t *ed, char *field);
//
@ -156,6 +159,8 @@ int PR_SetString(progs_t *pr, char *s);
// externaly supplied functions
int ED_Parse_Extra_Fields (progs_t *pr, char *key, char *value);
void FindEdictFieldOffsets (progs_t *pr);
//============================================================================