diff xrogue/n_level.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 e52a8a7ad4c5
line wrap: on
line diff
--- a/xrogue/n_level.c	Fri Feb 19 21:02:28 2016 -0500
+++ b/xrogue/n_level.c	Wed Mar 02 21:13:26 2016 -0500
@@ -20,13 +20,16 @@
 #include "rogue.h"
 #define TERRASAVE 3
 
+void put_things(LEVTYPE ltype);
+
 /*
  * new_level:
  *      Dig and draw a new level
+ *	ltype: designates type of level to create
  */
 
-new_level(ltype)
-LEVTYPE ltype;          /* designates type of level to create */
+void
+new_level(LEVTYPE ltype)
 {
     register int rm = 0, i, cnt;
     register unsigned char ch;
@@ -464,14 +467,15 @@
 
     /* Do we sense any food on this level? */
     if (cur_relic[SURTUR_RING])
-        quaff(P_FFIND, NULL, NULL, FALSE);
+        quaff(P_FFIND, 0, 0, FALSE);
 }
 
 /*
  * Pick a room that is really there
  */
 
-rnd_room()
+int
+rnd_room(void)
 {
     register int rm;
 
@@ -487,10 +491,11 @@
 /*
  * put_things:
  *      put potions and scrolls on this level
+ *	ltype: designates type of level to create
  */
 
-put_things(ltype)
-LEVTYPE ltype;          /* designates type of level to create */
+void
+put_things(LEVTYPE ltype)
 {
     register int i, rm, cnt;
     register struct object *cur;