2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
#ifndef _OSI_H_
|
|
|
|
#define _OSI_H_
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#define UNUSED_ATTR __attribute__((unused))
|
|
|
|
|
|
|
|
#define CONCAT(a, b) a##b
|
2017-08-17 13:13:45 +00:00
|
|
|
#define COMPILE_ASSERT(x)
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
int osi_init(void);
|
|
|
|
void osi_deinit(void);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
#endif /*_OSI_H_*/
|