X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=funcs.h;h=3f737c5da82305f5b62a7211104bcea1bb7e557c;hb=8e86d0dca3e10ec1ed9f205b9e8222f6555612ad;hp=b64bfe2ea67cf4a3a01c8d0d3ab1cb50406a9a05;hpb=c9e9b6457540d1feb7ccd7186ccffa57698dec57;p=open-adventure.git diff --git a/funcs.h b/funcs.h index b64bfe2..3f737c5 100644 --- a/funcs.h +++ b/funcs.h @@ -1,3 +1,5 @@ +#include + /* STATEMENT FUNCTIONS * * AT(OBJ) = TRUE IF ON EITHER SIDE OF TWO-PLACED OBJECT @@ -35,7 +37,7 @@ #define OUTSID(LOC) ((LOC) <= 8 || FOREST(LOC) || (LOC) == PLAC[SAPPH] || (LOC) == 180 || (LOC) == 182) #define INDEEP(LOC) ((LOC) >= 15 && !OUTSID(LOC) && (LOC) != 179) -extern int carry(void), discard(long), attack(void), throw(void), feed(void), fill(void); +extern int carry(void), discard(bool), attack(void), throw(void), feed(void), fill(void); void score(long);