mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
19 lines
195 B
C
19 lines
195 B
C
#ifndef SLEEP_H
|
|
#define SLEEP_H
|
|
|
|
#include "types.h"
|
|
#include <dolphin/os.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void csleep(OSTime c);
|
|
void msleep(u32);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|