summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/shared/platform/linux-sgx/untrusted/signal.c
blob: b2eecfb7ad9a95bf5287984cf40ac86916784a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */
#include <signal.h>

int
ocall_raise(int sig)
{
    return raise(sig);
}