mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
300 B
C
20 lines
300 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_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
|
|
#endif /* CONFIG_H */
|