diff options
| author | Prakxo <87568477+Prakxo@users.noreply.github.com> | 2023-08-16 17:51:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-16 09:51:20 -0700 |
| commit | 0378b87aeef5abc58df7fd0a7c145a21342a1470 (patch) | |
| tree | 2f5f9eab2a2ac1e94a99ea36b5de12a3d40dde46 /include | |
| parent | a2deca64d24427d6856dc5e7fc43bde4b1641a43 (diff) | |
sleep OK (#52)
* sleep OK
* add array_count macro
Diffstat (limited to 'include')
| -rw-r--r-- | include/libc64/sleep.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/libc64/sleep.h b/include/libc64/sleep.h index 17552c6..9e27404 100644 --- a/include/libc64/sleep.h +++ b/include/libc64/sleep.h @@ -3,10 +3,10 @@ #include "ultra64.h" -// void csleep(); -// void nsleep(); -// void usleep(); -// void msleep(); -// void sleep(); +void csleep(OSTime t); +void nsleep(u32 t); +void usleep(u32 t); +void msleep(u32 t); +void sleep(u32 t); #endif |
