//===- orc-rt-c/orc-rt.h - Placeholder header for orc-rt ----------*- C -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // Placeholder header for initial orc-rt checkin. // //===----------------------------------------------------------------------===// #ifndef ORC_RT_C_ORC_RT_H #define ORC_RT_C_ORC_RT_H #ifdef __cplusplus extern "C" { #endif /// \addtogroup orc_rt_c_api orc-rt C APIs /// @{ void orc_rt(void); /// @} /// #ifdef __cplusplus } // extern "C" #endif #endif // ORC_RT_C_ORC_RT_H