mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
More whitespace. Eek.
This commit is contained in:
parent
89412eee10
commit
ddb90e1acd
1 changed files with 5 additions and 2 deletions
|
@ -39,7 +39,9 @@ static const char rcsid[] =
|
|||
#include "QF/clip_hull.h"
|
||||
#include "QF/model.h"
|
||||
|
||||
clip_hull_t *MOD_Alloc_Hull (int nodes, int planes)
|
||||
|
||||
clip_hull_t *
|
||||
MOD_Alloc_Hull (int nodes, int planes)
|
||||
{
|
||||
clip_hull_t *ch;
|
||||
int size, i;
|
||||
|
@ -65,7 +67,8 @@ clip_hull_t *MOD_Alloc_Hull (int nodes, int planes)
|
|||
return ch;
|
||||
}
|
||||
|
||||
void MOD_Free_Hull (clip_hull_t *ch)
|
||||
void
|
||||
MOD_Free_Hull (clip_hull_t *ch)
|
||||
{
|
||||
free (ch);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue