FLANG
init.h
1//===-- include/flang/Runtime/CUDA/init.h -----------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef FORTRAN_RUNTIME_CUDA_INIT_H_
10#define FORTRAN_RUNTIME_CUDA_INIT_H_
11
12#include "flang/Runtime/entry-names.h"
13
14extern "C" {
15
16void RTDECL(CUFInit)();
17}
18
19#endif // FORTRAN_RUNTIME_CUDA_INIT_H_