diff options
| author | Simon Tatham <anakin@pobox.com> | 2005-06-28 17:43:50 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2005-06-28 17:43:50 +0000 |
| commit | ea172a046012b550d5d395b511b9d08aeb6ea66d (patch) | |
| tree | 36d78f956801fa6bd2a40838387e18c3148fe932 /nullgame.c | |
| parent | 7011028b17064071e5d557728bf2e5bfcf40de45 (diff) | |
| download | puzzles-ea172a046012b550d5d395b511b9d08aeb6ea66d.zip puzzles-ea172a046012b550d5d395b511b9d08aeb6ea66d.tar.gz puzzles-ea172a046012b550d5d395b511b9d08aeb6ea66d.tar.bz2 puzzles-ea172a046012b550d5d395b511b9d08aeb6ea66d.tar.xz | |
New {en,de}code_ui functions should be static. Oops.
[originally from svn r6031]
Diffstat (limited to 'nullgame.c')
| -rw-r--r-- | nullgame.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -137,12 +137,12 @@ static void free_ui(game_ui *ui) { } -char *encode_ui(game_ui *ui) +static char *encode_ui(game_ui *ui) { return NULL; } -void decode_ui(game_ui *ui, char *encoding) +static void decode_ui(game_ui *ui, char *encoding) { } |