Post-release, reset to BETA status to indicate development since
there's no ALPHA. And use BETA to enable the latent RNG checks.
-/* SCCS Id: @(#)global.h 3.4 2003/02/19 */
+/* SCCS Id: @(#)global.h 3.4 2003/12/13 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
#include <stdio.h>
-/* #define BETA */ /* if a beta-test copy [MRS] */
+#define BETA /* development or beta testing [MRS] */
/*
* Files expected to exist in the playground directory.
-/* SCCS Id: @(#)rnd.c 3.4 1996/02/07 */
+/* SCCS Id: @(#)rnd.c 3.4 2003/12/13 */
/* NetHack may be freely redistributed. See license for details. */
#include "hack.h"
+#if defined(BETA) && !defined(DEBUG) && !defined(NODEBUG)
+#define DEBUG
+#endif
+
/* "Rand()"s definition is determined by [OS]conf.h */
#if defined(LINT) && defined(UNIX) /* rand() is long... */
extern int NDECL(rand);