diff options
| author | Simon Tatham <anakin@pobox.com> | 2006-11-01 13:25:25 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2006-11-01 13:25:25 +0000 |
| commit | 13a9cb0bea7351132763a25e7d07b2e70ee99dd1 (patch) | |
| tree | 17d38086ce1642fcc83cbdef8622c3774173a07a /dsf.c | |
| parent | 9b31ed25d8b92be550b0a91959ac9bede3aea159 (diff) | |
| download | puzzles-13a9cb0bea7351132763a25e7d07b2e70ee99dd1.zip puzzles-13a9cb0bea7351132763a25e7d07b2e70ee99dd1.tar.gz puzzles-13a9cb0bea7351132763a25e7d07b2e70ee99dd1.tar.bz2 puzzles-13a9cb0bea7351132763a25e7d07b2e70ee99dd1.tar.xz | |
James H's Palm-compatibility updates to the latest Loopy changes,
working around bugs in the Palm compiler and removing Palm-
incompatible diagnostics such as fprintf.
[originally from svn r6889]
Diffstat (limited to 'dsf.c')
| -rw-r--r-- | dsf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ #include "puzzles.h" -void print_dsf(int *dsf, int size) +/*void print_dsf(int *dsf, int size) { int *printed_elements = snewn(size, int); int *equal_elements = snewn(size, int); @@ -58,7 +58,7 @@ done: sfree(printed_elements); sfree(equal_elements); sfree(inverse_elements); -} +}*/ void dsf_init(int *dsf, int size) { |