wut/include/coreinit/exit.h
GaryOderNichts 2b66122422 Add .clang-format
Co-authored-by: Maschell <Maschell@gmx.de>
2025-06-05 11:06:04 +01:00

27 lines
271 B
C

#pragma once
#include <wut.h>
/**
* \defgroup coreinit_exit Exit
* \ingroup coreinit
* @{
*/
#ifdef __cplusplus
extern "C" {
#endif
// clang-format off
void
RPLWRAP(exit)(int code);
// clang-format on
void
_Exit(int code);
#ifdef __cplusplus
}
#endif
/** @} */