mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:21:52 +01: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
|