blob: b7994f120c009512da8656c9b8cf5a6f2549da10 [file] [log] [blame]
// Copyright 2024 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <zircon/syscalls.h>
extern "C" int64_t Start(zx_handle_t bootstrap, void* vdso);
extern "C" [[noreturn]] void _start(zx_handle_t bootstrap, void* vdso) {
zx_process_exit(Start(bootstrap, vdso));
}