mm/include/libc64/sleep.h
Anghelo Carvajal 6dd1600936
Organize libc64 files (#1492)
* Move qrand to libc64

* use an union to avoid type punning

* __osMalloc

* math64.c

* fixed_point.h

* sleep

* aprintf.h

* sprintf

* malloc

* use original names on aprintf.c and malloc.c

* qrand cleanup pass

* use original names of sleep.c

* og names for sprintf

* more cleanup

* format

* fixes

* whoops

* use ARRAY_COUNT again

* comment

* Use `fu`

* forgot this one

* review

* fix

* sneak a tiny cleanup
2023-11-27 12:01:42 +11:00

13 lines
193 B
C

#ifndef LIBC64_SLEEP_H
#define LIBC64_SLEEP_H
#include "ultra64.h"
void csleep(OSTime time);
void nsleep(u32 nsec);
void usleep(u32 usec);
void msleep(u32 msec);
void sleep(u32 sec);
#endif