summaryrefslogtreecommitdiffstats
path: root/hunt
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-03-29 22:15:26 +0000
committerdholland <dholland@NetBSD.org>2014-03-29 22:15:26 +0000
commit18db53a64319b86ed429e171bc3a52f4b3bc74f2 (patch)
treef40fd8315054f33533795e77673b7da489a2b31c /hunt
parentaf406834092eeaa9d737fab22ccc9068bc1fe45b (diff)
downloadbsdgames-darwin-18db53a64319b86ed429e171bc3a52f4b3bc74f2.tar.gz
bsdgames-darwin-18db53a64319b86ed429e171bc3a52f4b3bc74f2.tar.zst
bsdgames-darwin-18db53a64319b86ed429e171bc3a52f4b3bc74f2.zip
group external functions by where they come from
Diffstat (limited to 'hunt')
-rw-r--r--hunt/hunt/hunt_private.h19
1 files changed, 13 insertions, 6 deletions
diff --git a/hunt/hunt/hunt_private.h b/hunt/hunt/hunt_private.h
index 06963100..c84f486b 100644
--- a/hunt/hunt/hunt_private.h
+++ b/hunt/hunt/hunt_private.h
@@ -1,4 +1,4 @@
-/* $NetBSD: hunt_private.h,v 1.2 2014/03/29 22:05:44 dholland Exp $ */
+/* $NetBSD: hunt_private.h,v 1.3 2014/03/29 22:15:26 dholland Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
@@ -78,12 +78,19 @@ extern bool no_beep;
* function types
*/
-void bad_con(void) __dead;
-void bad_ver(void) __dead;
-void clear_the_screen(void);
+/* in connect.c */
void do_connect(char *, char, long);
-void do_message(void);
+
+/* in hunt.c */
+__dead void bad_con(void);
+__dead void bad_ver(void);
+void intr(int);
+
+/* in otto.c */
void otto(int, int, char);
+
+/* in playit.c */
void playit(void);
int quit(int);
-void intr(int);
+void clear_the_screen(void);
+void do_message(void);