blob: d2272f084759a7e5c724382c03810a6f66a8ded9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef POKEREVO_OS_H
#define POKEREVO_OS_H
#ifdef __cplusplus
extern "C" {
#endif
#include "SDK/OS/OSAlloc.h"
#include "SDK/OS/OSCache.h"
#include "SDK/OS/OSInterrupt.h"
#include "SDK/OS/OSSemaphore.h"
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_OS_H
|