1 //===-- include/flang/Runtime/main.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_MAIN_H_
10 #define FORTRAN_RUNTIME_MAIN_H_
11 
12 #include "flang/Runtime/c-or-cpp.h"
13 #include "flang/Runtime/entry-names.h"
14 
15 FORTRAN_EXTERN_C_BEGIN
16 void RTNAME(ProgramStart)(int, const char *[], const char *[]);
17 void RTNAME(ByteswapOption)(void); // -byteswapio
18 FORTRAN_EXTERN_C_END
19 
20 #endif // FORTRAN_RUNTIME_MAIN_H_
21