aboutsummaryrefslogtreecommitdiff
path: root/doc/examples/SoundRecorder/include/debug.h
blob: 4863d5787566aea5bebaf19554a2138660ba5647 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* by Luis Figueiredo (stdio@netc.pt)
 *
 *
 * date: Sat Mar 30 14:16:05 GMT 2002
 *
 * 	DEBUG macros
 *
 */

#ifndef _DEBUG_H_
#define _DEBUG_H_

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif         

#ifdef DEBUG
	#define IFDEBUG(x) x
#else
	#define IFDEBUG(x)
#endif


#endif