mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04: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 */
|