mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
76d97ac18a
* [headers 14] libc64 headers * bss * bss
12 lines
215 B
C
12 lines
215 B
C
#ifndef LIBC64_SLEEP_H
|
|
#define LIBC64_SLEEP_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
void Sleep_Cycles(OSTime cycles);
|
|
void Sleep_Nsec(u32 nsec);
|
|
void Sleep_Usec(u32 usec);
|
|
void Sleep_Msec(u32 ms);
|
|
void Sleep_Sec(u32 sec);
|
|
|
|
#endif
|