home *** CD-ROM | disk | FTP | other *** search
- /* -*-C-*-
- *
- * $Header: /ax/networking:include/svcdebug.h:networking 1.1 $
- * $Source: /ax/networking:include/svcdebug.h: $
- *
- * svcdebug.h - minimal debug support using SVC printf routines
- *
- * Copyright (c) 1995 Acorn Computers Ltd., Cambridge, England
- *
- * $Log: svcdebug.h,v $
- * 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 */
-