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]
This commit is contained in:
Simon Tatham
2006-11-01 13:25:25 +00:00
parent 9b31ed25d8
commit 13a9cb0bea
2 changed files with 28 additions and 27 deletions

4
dsf.c
View File

@ -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)
{