Files
ac-decomp/include/libc64/sleep.h
T
Luke Street 1b0b96665a Migrate to dtk-template
Co-authored-by: NWPlayer123 <NWPlayer123@users.noreply.github.com>
2024-10-28 19:18:21 -06:00

19 lines
202 B
C

#ifndef SLEEP_H
#define SLEEP_H
#include "types.h"
#include "dolphin/os/OSTime.h"
#ifdef __cplusplus
extern "C" {
#endif
void csleep(OSTime c);
void msleep(u32);
#ifdef __cplusplus
}
#endif
#endif