2021-03-28 22:49:05 +02:00
|
|
|
#ifndef OSSYNC_H
|
|
|
|
|
#define OSSYNC_H
|
|
|
|
|
|
|
|
|
|
|
2022-08-30 14:22:17 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static void SystemCallVector(void);
|
|
|
|
|
void __OSInitSystemCall(void);
|
|
|
|
|
|
2022-11-11 10:09:48 -08:00
|
|
|
void __OSSystemCallVectorEnd(void);
|
|
|
|
|
|
2022-08-30 14:22:17 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
};
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-03-28 22:49:05 +02:00
|
|
|
#endif /* OSSYNC_H */
|