Files

8 lines
91 B
C
Raw Permalink Normal View History

#include "unistd.h"
_Noreturn void __exit(int code)
{
_exit(code);
while (1) {}
}