mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-15 05:56:22 -05:00
16 lines
119 B
C
16 lines
119 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void
|
|
exit(int code);
|
|
|
|
void
|
|
_Exit();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|