UDI/udibuild - Added command tracing flag, C99 pedantic in default config
[tpg/acess2.git] / UDI / Tools / udibuild_src / include / common.h
1 /*
2  * udibuild - UDI Compilation Utility
3  * - By John Hodge (thePowersGang)
4  *
5  * common.h
6  * - Common helpers
7  */
8 #ifndef _COMMON_H_
9 #define _COMMON_H_
10
11 #include <stdarg.h>
12 #include <stdbool.h>
13
14 #ifndef __GNUC__
15 # define __attribute__(...)
16 #endif
17
18 extern char     *mkstr(const char *fmt, ...) __attribute__((format(printf,1,2)));
19
20 extern bool     gbTraceEnabled;
21
22 #endif
23

UCC git Repository :: git.ucc.asn.au