You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
377 B
26 lines
377 B
/*
|
|
* 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
|