10 lines
98 B
C
10 lines
98 B
C
|
#ifndef UTIL_H
|
||
|
#define UTIL_H
|
||
|
|
||
|
#define UNUSED(x) (void)(x)
|
||
|
|
||
|
void debug(const char *str);
|
||
|
|
||
|
#endif
|
||
|
|