Mercurial > hg > early-roguelike
diff xrogue/help.c @ 225:4f6e056438eb
Merge the GCC5 and build fix branches.
author | John "Elwin" Edwards |
---|---|
date | Wed, 02 Mar 2016 21:28:34 -0500 |
parents | f54901b9c39b |
children | 0250220d8cdd |
line wrap: on
line diff
--- a/xrogue/help.c Fri Feb 26 17:30:30 2016 -0500 +++ b/xrogue/help.c Wed Mar 02 21:28:34 2016 -0500 @@ -299,7 +299,8 @@ 0, 0 }; -ident_hero() +void +ident_hero(void) { bool doit = TRUE; @@ -475,7 +476,8 @@ * Real Help */ -help() +void +help(void) { register struct h_list *strp = helpstr; register struct item_list *itemp = item_help; @@ -587,8 +589,8 @@ * Tell the player what a certain thing is. */ -identify(ch) -register unsigned char ch; +void +identify(unsigned char ch) { register char *str = NULL;