mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-06-03 10:01:10 -04:00
14 lines
174 B
C
14 lines
174 B
C
#ifndef OS_TIME_H
|
|
#define OS_TIME_H
|
|
#include "types.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef s64 OSTime;
|
|
OSTime OSGetTime(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |