blob: bf3843b167d395765756ade4b8c9a9d575203f21 [file] [log] [blame]
Adam Barth57eacf52020-11-04 00:38:09 +00001// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#pragma once
6
7#include <zircon/syscalls/exception.h>
8
9#ifdef __cplusplus
10extern "C" {
11#endif
12
13__EXPORT const char* _zx_exception_get_string(zx_excp_type_t exception);
14__EXPORT const char* zx_exception_get_string(zx_excp_type_t exception);
15
16#ifdef __cplusplus
17}
18#endif
19