aboutsummaryrefslogtreecommitdiff
path: root/src/common.h
blob: 7030e4bf1922828b271c819b20e77d388ee743b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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
#	include <stdlib.h>
#	define __attribute__(x)
#	define __builtin_unreachable() abort()
#	define likely(x)               (x)
#	define unlikely(x)             (x)
#endif

/* Make printf() always available in debug builds */
#ifdef DEBUG
#	include <stdio.h>
#endif

#define MPQ_IS_INIT(x) (mpq_denref(x)->_mp_d != NULL)

#endif /* !ORYX_COMMON_H */