corda/src/common.h

8 lines
140 B
C
Raw Normal View History

#ifndef COMMON_H
#define COMMON_H
#define NO_RETURN __attribute__((noreturn))
#define UNLIKELY(v) __builtin_expect(v, 0)
#endif//COMMON_H