2015-12-27 03:10:38 +01:00
|
|
|
#pragma once
|
2016-01-07 13:07:13 +01:00
|
|
|
#include <wut.h>
|
2015-12-27 03:10:38 +01:00
|
|
|
|
2016-01-07 17:02:54 +01:00
|
|
|
/**
|
|
|
|
* \defgroup coreinit_exit Exit
|
|
|
|
* \ingroup coreinit
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2016-01-07 15:09:43 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2015-12-27 03:10:38 +01:00
|
|
|
|
2016-01-06 00:24:54 +01:00
|
|
|
void
|
|
|
|
exit(int code);
|
|
|
|
|
2015-12-27 03:10:38 +01:00
|
|
|
void
|
2017-04-11 00:16:33 +02:00
|
|
|
_Exit(int code);
|
2015-12-27 03:10:38 +01:00
|
|
|
|
2016-01-07 15:09:43 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2016-01-07 17:02:54 +01:00
|
|
|
|
|
|
|
/** @} */
|