summaryrefslogtreecommitdiff
path: root/ball.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-06-03 20:47:41 +0000
committerMatt Turner <mattst88@gmail.com>2008-06-03 20:47:41 +0000
commit33c1f18d3871fc756f381d1a3aee1fdac2ff077e (patch)
treea40710e9435af7da66e53e663d327034fd81ba1d /ball.h
parent15e2da75f4a8550b445a4ba8cb3d21c20beb007f (diff)
Fix a few things picked up by the Compaq C Compiler (on my Alpha)
git-svn-id: svn://mattst88.com/svn/glpong/trunk@16 449aeecc-241a-0410-943f-e2f883e2d7a2
Diffstat (limited to 'ball.h')
-rw-r--r--ball.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ball.h b/ball.h
index db3ee12..2ff0221 100644
--- a/ball.h
+++ b/ball.h
@@ -13,8 +13,8 @@ typedef struct Ball_t {
GLubyte r, g, b, a; /* red, green, blue, alpha components; 1 byte ea. */
} Ball_t;
-void GLPong_BallInit();
-void GLPong_BallDeinit();
+void GLPong_BallInit(void);
+void GLPong_BallDeinit(void);
void GLPong_BallAdd(Ball_t ** balls);
void GLPong_BallDelete(Ball_t * from, Ball_t * ball);
void GLPong_BallDeleteAll(Ball_t * list);