aboutsummaryrefslogtreecommitdiff
path: root/src/common.h
blob: be88f0be094168666af43f0720187b14d99c9868 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef ORYX_COMMON_H
#define ORYX_COMMON_H

#ifdef __GNUC__
#	define likely(x)   __builtin_expect(!!(x), 1)
#	define unlikely(x) __builtin_expect(!!(x), 0)
#else
#	define __attribute__(x)
#	define likely(x)   (x)
#	define unlikely(x) (x)
#endif

#endif /* !ORYX_COMMON_H */