2025-04-27 07:49:33 -04:00

26 lines
377 B
C

/*
* Copyright (c) 1996 1997, 1998 Philips CE I&C
*
* FILE DEBUG.H
* DATE 7-1-97
* VERSION 1.00
* AUTHOR M.J. Verberne
* DESCRIPTION Defines printf which is used for
* debugging output to the console
* HISTORY
*/
#ifndef _DEBUG_
#define _DEBUG_
#include <stdio.h>
#ifndef _DEBUG
#define printf
#else
#endif
#endif