/*
 * 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