Testprogramm DogM
defines.h
- Committer:
- FrankWeissenborn
- Date:
- 2011-01-12
- Revision:
- 4:99738699678d
File content as of revision 4:99738699678d:
#ifndef _DEFINES_H
#define _DEFINES_H
// ----------------------------------------------------------------------------
// debug output
// ----------------------------------------------------------------------------
#define DEBUG
#ifdef DEBUG
# define DEBUGOUT(x,y...) printf(x, ##y);
#else
# define DEBUGOUT(x,y...)
#endif
#endif