プロセスの終了

#include < unistd.h >

int
main()
{
    _exit(0);
    
    return 0;
}