mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-20 23:51:29 -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 *permutation;
|
||||
bool *gen_lock;
|
||||
extern int *divvy_rectangle(int w, int h, int k, random_state *rs);
|
||||
|
||||
sc = solver_scratch_new(w, h, k);
|
||||
grid = snewn(wh, unsigned char);
|
||||
|
Reference in New Issue
Block a user