diff options
author | Matt Turner <mattst88@gmail.com> | 2008-06-03 20:47:41 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2008-06-03 20:47:41 +0000 |
commit | 33c1f18d3871fc756f381d1a3aee1fdac2ff077e (patch) | |
tree | a40710e9435af7da66e53e663d327034fd81ba1d /text.h | |
parent | 15e2da75f4a8550b445a4ba8cb3d21c20beb007f (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 'text.h')
-rw-r--r-- | text.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,8 @@ #ifndef TEXT_H #define TEXT_H -int GLPong_TextInit(); -void GLPong_TextDeinit(); +int GLPong_TextInit(void); +void GLPong_TextDeinit(void); void GLPong_TextDrawFPS(GLfloat fps); #endif |