Update version to 0.16
[ust.git] / compiler.h
... / ...
CommitLineData
1#define __printf(a,b) __attribute__((format(printf,a,b)))
2
3#define likely(x) __builtin_expect(!!(x), 1)
4#define unlikely(x) __builtin_expect(!!(x), 0)
5
6#define notrace __attribute__((no_instrument_function))
This page took 0.024891 seconds and 5 git commands to generate.