Files
photon/libc/stdlib/exit.c

7 lines
75 B
C

#include <__system.h>
_Noreturn void exit(int code)
{
__exit(code);
}