qbsp: remove unneccessary extern from function declarations
Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
parent
c3bf54e494
commit
bf9bc549d2
12
qbsp/qbsp.h
12
qbsp/qbsp.h
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue