Loading...
Searching...
No Matches
libb2_config.h
1#pragma once
2
3#include "cpu.h"
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9/* Add no suffix to the functions */
10#define SUFFIX
11
12/* Test for a little-endian machine */
13#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
14#define NATIVE_LITTLE_ENDIAN
15#endif
16
17#ifdef __cplusplus
18}
19#endif