dd8c75a87d8ff623e63f6ad570af4d9d2d392ce8
[ust.git] / share / compiler.h
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.030057 seconds and 3 git commands to generate.