diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | keen.c | 4 | ||||
| -rwxr-xr-x | mkfiles.pl | 2 |
3 files changed, 5 insertions, 3 deletions
@@ -97,8 +97,10 @@ /org /*.ppc /*.i386 +/*.x86_64 /Puzzles.ppc.bin /Puzzles.i386.bin +/Puzzles.x86_64.bin /version2.def /preprocessed.but /*.a @@ -1101,7 +1101,7 @@ done cluevals[j] *= grid[i]; break; case C_SUB: - cluevals[j] = abs(cluevals[j] - grid[i]); + cluevals[j] = labs(cluevals[j] - grid[i]); break; case C_DIV: { @@ -1534,7 +1534,7 @@ static int check_errors(const game_state *state, long *errors) cluevals[j] *= state->grid[i]; break; case C_SUB: - cluevals[j] = abs(cluevals[j] - state->grid[i]); + cluevals[j] = labs(cluevals[j] - state->grid[i]); break; case C_DIV: { @@ -1707,7 +1707,7 @@ if (defined $makefiles{'nestedvm'}) { if (defined $makefiles{'osx'}) { $mftyp = 'osx'; $dirpfx = &dirpfx($makefiles{'osx'}, "/"); - @osxarchs = ('i386'); + @osxarchs = ('i386', 'x86_64'); ##-- Mac OS X makefile open OUT, ">$makefiles{'osx'}"; select OUT; |