/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ enclave { from "sgx_tstdc.edl" import *; trusted { /* define ECALLs here. */ public void ecall_iwasm_main(void); }; untrusted { /* define OCALLs here. */ void ocall_print([in, string]const char* str); }; };