mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Remove an unnecessary extern function declaration.
unfinished/separate.c had its own declaration of divvy_rectangle(), duplicating the one in puzzles.h. Probably that was where the declaration originally lived, before I moved it out into the main header.
This commit is contained in:
@ -506,7 +506,6 @@ static unsigned char *generate(int w, int h, int k, random_state *rs)
|
|||||||
int i, j, m, retries;
|
int i, j, m, retries;
|
||||||
int *permutation;
|
int *permutation;
|
||||||
bool *gen_lock;
|
bool *gen_lock;
|
||||||
extern int *divvy_rectangle(int w, int h, int k, random_state *rs);
|
|
||||||
|
|
||||||
sc = solver_scratch_new(w, h, k);
|
sc = solver_scratch_new(w, h, k);
|
||||||
grid = snewn(wh, unsigned char);
|
grid = snewn(wh, unsigned char);
|
||||||
|
Reference in New Issue
Block a user