1 
2 #ifndef _OSI_H_
3 #define _OSI_H_
4 
5 #include <stdbool.h>
6 #include <stdint.h>
7 
8 #define UNUSED_ATTR __attribute__((unused))
9 
10 #define CONCAT(a, b) a##b
11 #define COMPILE_ASSERT(x)
12 
13 int osi_init(void);
14 void osi_deinit(void);
15 
16 #endif /*_OSI_H_*/
17