From 0b62e7d4bd1cd5676c448c0878186958edd7a879 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Wed, 25 Sep 2024 20:43:08 -0400 Subject: reorder declarations --- balls.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/balls.c b/balls.c index 77efa2d..1fcb5df 100644 --- a/balls.c +++ b/balls.c @@ -286,12 +286,10 @@ mass(uint radius) { void ball(void *arg) { BallArg *barg; - Ball b; - Image *fill, *erase; + Ball b, other; Point oldpos; - int i; - Ball other; - int t; + Image *fill, *erase; + int i, t; barg = (BallArg *) arg; b = (Ball) barg->b; -- cgit v1.2.3