1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 15:03:53 +01:00
RIOT/pkg/libb2/include/libb2_config.h

20 lines
275 B
C

#pragma once
#include "cpu.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Add no suffix to the functions */
#define SUFFIX
/* Test for a little-endian machine */
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
#define NATIVE_LITTLE_ENDIAN
#endif
#ifdef __cplusplus
}
#endif