Initial check-in of work in progress xcode build of NetHack.

Buyer beware.  This is a check-point of the xcode work to allow others
to play.
This commit is contained in:
Bart House
2018-11-19 09:22:11 -08:00
parent 15da3e4d53
commit aa48ed18e7
12 changed files with 1703 additions and 4 deletions

View File

@@ -20,10 +20,10 @@ extern void NDECL(vms_abort);
/*VARARGS1*/
boolean panicking;
void VDECL(panic, (char *, ...));
void VDECL(panic, (const char *, ...));
void panic
VA_DECL(char *, str)
VA_DECL(const char *, str)
{
VA_START(str);
VA_INIT(str, char *);