unify style for returning pointers
[c11tester.git] / common.h
1 #ifndef __COMMON_H__
2 #define __COMMON_H__
3
4 #include <stdio.h>
5
6 //#define CONFIG_DEBUG
7
8 #ifdef CONFIG_DEBUG
9 #define DEBUG(fmt, ...) do { printf("*** %25s(): line %-4d *** " fmt, __func__, __LINE__, ##__VA_ARGS__); } while (0)
10 #define DBG() DEBUG("\n");
11 #else
12 #define DEBUG(fmt, ...)
13 #define DBG()
14 #endif
15
16 void * myMalloc(size_t size);
17 void myFree(void *ptr);
18
19 #endif /* __COMMON_H__ */