summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-02-24 10:03:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-02-24 10:03:27 +0000
commite1c6604719b49b07d8e6e88f63d07a335bf33722 (patch)
tree3ee4ba6e9387cbd90711e8ba90b843360f61df9c /apps
parent820e3ae746ae5be6baa533b552fb06e8f64a9d94 (diff)
downloadrockbox-e1c6604719b49b07d8e6e88f63d07a335bf33722.tar.gz
rockbox-e1c6604719b49b07d8e6e88f63d07a335bf33722.zip
use void, not blanks, in function protos to prevent warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3328 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/sokoban.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/recorder/sokoban.c b/apps/recorder/sokoban.c
index b192ea1922..061afcb97a 100644
--- a/apps/recorder/sokoban.c
+++ b/apps/recorder/sokoban.c
@@ -51,11 +51,11 @@
51#define COLS 20 51#define COLS 20
52#define MAX_UNDOS 5 52#define MAX_UNDOS 5
53 53
54static void init_undo(); 54static void init_undo(void);
55static void undo(); 55static void undo(void);
56static void add_undo(int button); 56static void add_undo(int button);
57 57
58static void init_boards(); 58static void init_boards(void);
59static void load_level(short level); 59static void load_level(short level);
60static void draw_level(short level); 60static void draw_level(short level);
61static void update_screen(void); 61static void update_screen(void);
@@ -103,13 +103,13 @@ static struct BoardInfo {
103} current_info; 103} current_info;
104 104
105 105
106static void init_undo() 106static void init_undo(void)
107{ 107{
108 undo_info.count = 0; 108 undo_info.count = 0;
109 undo_info.current = 0; 109 undo_info.current = 0;
110} 110}
111 111
112static void undo() 112static void undo(void)
113{ 113{
114 struct Undo *undo; 114 struct Undo *undo;
115 int i = 0; 115 int i = 0;
@@ -230,7 +230,7 @@ static void add_undo(int button)
230 undo_info.count++; 230 undo_info.count++;
231} 231}
232 232
233static void init_boards() 233static void init_boards(void)
234{ 234{
235 current_info.level.level = 0; 235 current_info.level.level = 0;
236 current_info.level.moves = 0; 236 current_info.level.moves = 0;