X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=funcs.h;h=e21fbd4be80aaa8ae544cd279b7a039a5c5490bf;hb=9ab8b0d271031d9f2aa8c563972887b2eeaba7c9;hp=ceb10216352cde3a2e7468fff2433b0d3186a000;hpb=3079ebda9551d8b62ff6f3d4b5c924e499eae5ce;p=open-adventure.git diff --git a/funcs.h b/funcs.h index ceb1021..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(void), discard(bool), attack(FILE *, long), throw(FILE *, long obj), feed(long), fill(void); +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);