25 lines
215 B
C
Raw Normal View History

2015-12-26 18:10:38 -08:00
#pragma once
2016-01-07 12:07:13 +00:00
#include <wut.h>
2015-12-26 18:10:38 -08:00
2016-01-07 16:02:54 +00:00
/**
* \defgroup coreinit_exit Exit
* \ingroup coreinit
* @{
*/
2016-01-07 14:09:43 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2015-12-26 18:10:38 -08:00
2016-01-05 15:24:54 -08:00
void
exit(int code);
2015-12-26 18:10:38 -08:00
void
_Exit();
2016-01-07 14:09:43 +00:00
#ifdef __cplusplus
}
#endif
2016-01-07 16:02:54 +00:00
/** @} */