1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-13 11:24:40 +00:00

[headers 14] libc64 headers (#2177)

* [headers 14] libc64 headers

* bss

* bss
This commit is contained in:
Dragorn421 2024-09-11 11:02:42 +02:00 committed by GitHub
parent cbf9eacf42
commit 76d97ac18a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 73 additions and 40 deletions

12
include/libc64/sleep.h Normal file
View file

@ -0,0 +1,12 @@
#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