diff xrogue/help.c @ 220:f54901b9c39b

XRogue: convert to ANSI-style function declarations.
author John "Elwin" Edwards
date Wed, 02 Mar 2016 21:13:26 -0500
parents e6179860cb76
children 0250220d8cdd
line wrap: on
line diff
--- a/xrogue/help.c	Fri Feb 19 21:02:28 2016 -0500
+++ b/xrogue/help.c	Wed Mar 02 21:13:26 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;