blob: 8e4a4f49135d402ebd73a0b5a586c207c2ed1a86 [file] [log] [blame]
Arnaldo Carvalho de Melo86ff3782017-04-17 11:23:41 -03001#ifndef _TOOLS_PERF_LINUX_BUG_H
2#define _TOOLS_PERF_LINUX_BUG_H
3
4/* Force a compilation error if condition is true, but also produce a
5 result (of value 0 and type size_t), so the expression can be used
6 e.g. in a structure initializer (or where-ever else comma expressions
7 aren't permitted). */
8#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
9
10#endif /* _TOOLS_PERF_LINUX_BUG_H */