aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/system/exit.cpp
blob: b17f6c5ad73b41ebdf203e1c974bc99302aee1fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "exit.h"

namespace NYT {

////////////////////////////////////////////////////////////////////////////////

void AbortProcess(int exitCode)
{
    _exit(exitCode);
}

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT