summaryrefslogtreecommitdiffstats
path: root/phantasia/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'phantasia/setup.c')
-rw-r--r--phantasia/setup.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/phantasia/setup.c b/phantasia/setup.c
index 70f3f6e3..af9703f7 100644
--- a/phantasia/setup.c
+++ b/phantasia/setup.c
@@ -1,7 +1,8 @@
-/* $NetBSD: setup.c,v 1.16 2007/12/15 19:44:42 perry Exp $ */
+/* $NetBSD: setup.c,v 1.17 2007/12/18 08:45:04 dogcow Exp $ */
/*
* setup.c - set up all files for Phantasia
+ * n.b.: this is used at build-time - i.e. during build.sh.
*/
#include <sys/cdefs.h>
#include <sys/param.h>
@@ -9,6 +10,10 @@
#include <fcntl.h>
#include "include.h"
+#ifndef __dead /* Not NetBSD */
+#define __dead ;
+#endif
+
int main(int, char *[]);
void Error(const char *, const char *) __dead;
double drandom(void);