Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/games/phantasia/setup.c,v rcsdiff: /ftp/cvs/cvsroot/src/games/phantasia/setup.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.14 retrieving revision 1.14.16.1 diff -u -p -r1.14 -r1.14.16.1 --- src/games/phantasia/setup.c 2004/12/09 05:15:59 1.14 +++ src/games/phantasia/setup.c 2008/01/09 01:30:53 1.14.16.1 @@ -1,15 +1,21 @@ -/* $NetBSD: setup.c,v 1.14 2004/12/09 05:15:59 jmc Exp $ */ +/* $NetBSD: setup.c,v 1.14.16.1 2008/01/09 01:30:53 matt Exp $ */ /* * setup.c - set up all files for Phantasia + * n.b.: this is used at build-time - i.e. during build.sh. */ +#include #include #include #include #include "include.h" +#ifndef __dead /* Not NetBSD */ +#define __dead ; +#endif + int main(int, char *[]); -void Error(const char *, const char *) __attribute__((__noreturn__)); +void Error(const char *, const char *) __dead; double drandom(void); /* */