mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
8 lines
148 B
C
8 lines
148 B
C
#include <switch/types.h>
|
|
#include <switch/svc.h>
|
|
|
|
void __attribute__((weak)) __attribute__((noreturn)) __libnx_exit(int rc)
|
|
{
|
|
svcExitProcess();
|
|
}
|