From 6fda9fb94b734fbccf327f91f9ffa5402850d83c Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Tue, 11 Aug 2015 12:28:17 -0400 Subject: [PATCH] Advanced Rogue 5: don't declare getenv() in rogue.h. stdlib.h can declare it better. --- arogue5/init.c | 1 + arogue5/rogue.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/arogue5/init.c b/arogue5/init.c index 90deef8..f846731 100644 --- a/arogue5/init.c +++ b/arogue5/init.c @@ -15,6 +15,7 @@ #include "curses.h" #include #include +#include #include "rogue.h" #include "mach_dep.h" diff --git a/arogue5/rogue.h b/arogue5/rogue.h index 41d856a..e3ebf71 100644 --- a/arogue5/rogue.h +++ b/arogue5/rogue.h @@ -950,7 +950,7 @@ struct object *wield_weap(); struct room *roomin(); struct trap *trap_at(); -char *getenv(), *tr_name(), *new(), +char *tr_name(), *new(), *vowelstr(), *inv_name(), *ctime(), *num(), *ring_num(), *misc_num(), *blesscurse(), *typ_name(), *weap_name(), *misc_name();