/* -*-C-*-
 *
 * svcdebug.h - minimal debug support using SVC printf routines
 *
 * Copyright (c) 1995 Acorn Computers Ltd., Cambridge, England
 *
 * :RCS Log discontinued:
 * Revision 1.1  95/01/11  10:21:40  kwelton
 * Initial revision
 * 
 */

#ifdef DEBUG
extern int debug;
#else
# define debug 0
#endif

extern void Printf(char *format, ...);

#define PRINTF	if (debug) Printf
#define N(x)	(x ? x : "NULL")

/*
 * trigger level for "super debugs"
 */
extern int superdebug;
#define SDBTRIGGER 16

/* EOF svcdebug.h */
