minor house-keeping

This commit is contained in:
Bill Currie 2003-07-15 16:34:43 +00:00
parent 7782f01422
commit cb6bf2e2ae
2 changed files with 1 additions and 13 deletions

View file

@ -81,9 +81,6 @@ void ED_ClearEdict (progs_t * pr, edict_t *e, int val);
edict_t *ED_Alloc (progs_t *pr); edict_t *ED_Alloc (progs_t *pr);
void ED_Free (progs_t *pr, edict_t *ed); void ED_Free (progs_t *pr, edict_t *ed);
char *ED_NewString (progs_t *pr, const char *string);
// returns a copy of the string allocated from the server's string heap
void ED_Print (progs_t *pr, edict_t *ed); void ED_Print (progs_t *pr, edict_t *ed);
void ED_Write (progs_t *pr, QFile *f, edict_t *ed); void ED_Write (progs_t *pr, QFile *f, edict_t *ed);
const char *ED_ParseEdict (progs_t *pr, const char *data, edict_t *ent); const char *ED_ParseEdict (progs_t *pr, const char *data, edict_t *ent);

View file

@ -158,9 +158,6 @@ ED_Write (progs_t *pr, QFile *f, edict_t *ed)
FIXME: need to tag constants, doesn't really work FIXME: need to tag constants, doesn't really work
*/ */
/*
ED_WriteGlobals
*/
void void
ED_WriteGlobals (progs_t *pr, QFile *f) ED_WriteGlobals (progs_t *pr, QFile *f)
{ {
@ -189,10 +186,7 @@ ED_WriteGlobals (progs_t *pr, QFile *f)
} }
/* static char *
ED_NewString
*/
char *
ED_NewString (progs_t *pr, const char *string) ED_NewString (progs_t *pr, const char *string)
{ {
char *new, *new_p; char *new, *new_p;
@ -378,9 +372,6 @@ ED_ParseEdict (progs_t *pr, const char *data, edict_t *ent)
return data; return data;
} }
/*
ED_ParseGlobals
*/
void void
ED_ParseGlobals (progs_t *pr, const char *data) ED_ParseGlobals (progs_t *pr, const char *data)
{ {