15 lines
268 B
C
15 lines
268 B
C
#ifndef INCLUDED_MACRO_H
|
|
#define INCLUDED_MACRO_H
|
|
|
|
#ifndef __has_attribute
|
|
# define __has_attribute(x) 0
|
|
#endif
|
|
|
|
#if __has_attribute(format)
|
|
# define ATTR_FORMAT(...) __attribute__((format(printf, __VA_ARGS__)))
|
|
#else
|
|
# define ATTR_FORMAT(...)
|
|
#endif
|
|
|
|
#endif
|