X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=funcs.h;h=e21fbd4be80aaa8ae544cd279b7a039a5c5490bf;hb=68ab090f175669e5bd6dace9ab6905e493114779;hp=c7b580d8e1d6f56d441e693770359560909af542;hpb=f01cb89a76fd0df79b2356b0e81e137113c9e777;p=open-adventure.git diff --git a/funcs.h b/funcs.h index c7b580d..e21fbd4 100644 --- a/funcs.h +++ b/funcs.h @@ -38,7 +38,12 @@ #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(long), discard(long, bool), attack(FILE *, long), throw(FILE *, long obj), feed(long), fill(long); +extern int carry(long); +extern int discard(long, bool); +extern int attack(FILE *, long, long); +extern int throw(FILE *, long, long); +extern int feed(long); +extern int fill(long); void score(long);