mirror of
https://github.com/zeldaret/af.git
synced 2026-09-26 13:33:16 -04:00
0378b87aee
* sleep OK * add array_count macro
13 lines
179 B
C
13 lines
179 B
C
#ifndef LIBC64_SLEEP_H
|
|
#define LIBC64_SLEEP_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
void csleep(OSTime t);
|
|
void nsleep(u32 t);
|
|
void usleep(u32 t);
|
|
void msleep(u32 t);
|
|
void sleep(u32 t);
|
|
|
|
#endif
|