mirror of
https://github.com/corda/corda.git
synced 2025-01-23 21:08:48 +00:00
8 lines
140 B
C
8 lines
140 B
C
|
#ifndef COMMON_H
|
||
|
#define COMMON_H
|
||
|
|
||
|
#define NO_RETURN __attribute__((noreturn))
|
||
|
#define UNLIKELY(v) __builtin_expect(v, 0)
|
||
|
|
||
|
#endif//COMMON_H
|