#ifndef __DEBUG_H
#define __DEBUG_H
/*
** $VER: debug.h 1.0 (17 Jun 1995)
**
** convenient debuggung support
**
** (C) Copyright 1995 Marius Gröger
**     All Rights Reserved
**
** $HISTORY:
**
** 17 Jun 1995 : 001.000 :  created
*/

#if DEBUG != 0
extern void KPrintF(char *, ...), KGetChar(void);
#  define d(x) do { KPrintF("%s:%s:%ld:",__FILE__,__FUNC__,__LINE__); KPrintF x; } while(0)
#else
#  define d(x)
#endif

#endif

