Repair linenoise build, add guidance to Makefile on getting it.
[open-adventure.git] / funcs.h
diff --git a/funcs.h b/funcs.h
index 6f99b11d2c6750c47abd97180233768f7705aaed..e21fbd4be80aaa8ae544cd279b7a039a5c5490bf 100644 (file)
--- a/funcs.h
+++ b/funcs.h
 #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(void), 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);