mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 04:49:45 +00:00
6dd1600936
* 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
13 lines
193 B
C
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
|