mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-26 03:45:13 -05:00
17 lines
136 B
C
17 lines
136 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void
|
|
exit(int code);
|
|
|
|
void
|
|
_Exit();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|