From ddb90e1acd09100d73b6c159085121fe861b502d Mon Sep 17 00:00:00 2001 From: Ragnvald Maartmann-Moe IV Date: Sun, 25 Aug 2002 16:35:22 +0000 Subject: [PATCH] More whitespace. Eek. --- libs/models/clip_hull.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libs/models/clip_hull.c b/libs/models/clip_hull.c index dd7c05072..36491eef6 100644 --- a/libs/models/clip_hull.c +++ b/libs/models/clip_hull.c @@ -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); }