Files
ac-decomp/include/dolphin/os/OSTime.h
T
2023-02-20 09:12:46 +01:00

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