mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
17 lines
237 B
C
17 lines
237 B
C
|
|
#ifndef _OSI_H_
|
|
#define _OSI_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#define UNUSED_ATTR __attribute__((unused))
|
|
|
|
#define CONCAT(a, b) a##b
|
|
#define COMPILE_ASSERT(x)
|
|
|
|
int osi_init(void);
|
|
void osi_deinit(void);
|
|
|
|
#endif /*_OSI_H_*/
|