]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - phantasia/io.c
sprinkle static
[bsdgames-darwin.git] / phantasia / io.c
index 8caf069bae276617f8987a97aba1958fc40603ea..1f9d330f20a439da2f84accd59feaaaf98aba5b6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: io.c,v 1.8 2004/04/11 13:35:06 he Exp $        */
+/*     $NetBSD: io.c,v 1.12 2009/05/25 23:08:45 dholland Exp $ */
 
 /*
  * io.c - input/output routines for Phantasia
@@ -6,12 +6,11 @@
 
 #include "include.h"
 #undef bool
+#include <sys/cdefs.h>
 #include <curses.h>
 
 void
-getstring(cp, mx)
-       char   *cp;
-       int     mx;
+getstring(char *cp, int mx)
 {
        char   *inptr;          /* pointer into string for next string */
        int     x, y;           /* original x, y coordinates on screen */
@@ -61,15 +60,14 @@ getstring(cp, mx)
 }
 
 void
-more(where)
-       int     where;
+more(int where)
 {
        mvaddstr(where, 0, "-- more --");
        getanswer(" ", FALSE);
 }
 
 double
-infloat()
+infloat(void)
 {
        double  result;         /* return value */
 
@@ -82,7 +80,7 @@ infloat()
 }
 
 int
-inputoption()
+inputoption(void)
 {
        ++Player.p_age;         /* increase age */
 
@@ -98,7 +96,7 @@ inputoption()
 }
 
 void
-interrupt()
+interrupt(void)
 {
        char    line[81];       /* a place to store data already on screen */
        int     loop;           /* counter */
@@ -154,9 +152,7 @@ interrupt()
 }
 
 int
-getanswer(choices, def)
-       const char   *choices;
-       bool    def;
+getanswer(const char *choices, phbool def)
 {
        int     ch;             /* input */
        volatile int    loop;   /* counter */
@@ -239,8 +235,7 @@ getanswer(choices, def)
 }
 
 void
-catchalarm(dummy)
-       int dummy __attribute__((__unused__));
+catchalarm(int dummy __unused)
 {
        longjmp(Timeoenv, 1);
 }