mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
7fd7d0c1f3
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
19 lines
233 B
C
19 lines
233 B
C
#ifndef OSSYNC_H
|
|
#define OSSYNC_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
static void SystemCallVector(void);
|
|
void __OSInitSystemCall(void);
|
|
|
|
void __OSSystemCallVectorEnd(void);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* OSSYNC_H */
|