qbsp: remove unneccessary extern from function declarations

Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
Kevin Shanahan 2013-04-23 14:41:54 +09:30
parent c3bf54e494
commit bf9bc549d2
1 changed files with 6 additions and 6 deletions

View File

@ -677,13 +677,13 @@ void ExportDrawNodes(mapentity_t *entity, node_t *headnode, int firstface);
extern const char *rgszWarnings[cWarnings];
extern const int rgcMemSize[];
extern void *AllocMem(int Type, int cSize, bool fZero);
extern void FreeMem(void *pMem, int Type, int cSize);
extern void FreeAllMem(void);
extern void PrintMem(void);
void *AllocMem(int Type, int cSize, bool fZero);
void FreeMem(void *pMem, int Type, int cSize);
void FreeAllMem(void);
void PrintMem(void);
extern void Message(int MsgType, ...);
extern void Error(const char *error, ...)
void Message(int MsgType, ...);
void Error(const char *error, ...)
__attribute__((format(printf,1,2),noreturn));
extern FILE *logfile;