2020-01-17 05:51:25 +08:00
|
|
|
//===-- runtime/main.h ------------------------------------------*- C++ -*-===//
|
2020-01-09 05:27:32 +08:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
2020-01-11 04:12:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2020-01-09 05:27:32 +08:00
|
|
|
|
|
|
|
#ifndef FORTRAN_RUNTIME_MAIN_H_
|
|
|
|
#define FORTRAN_RUNTIME_MAIN_H_
|
|
|
|
|
2020-01-24 08:59:27 +08:00
|
|
|
#include "c-or-cpp.h"
|
2020-01-15 06:19:42 +08:00
|
|
|
#include "entry-names.h"
|
|
|
|
|
2020-03-06 14:51:41 +08:00
|
|
|
FORTRAN_EXTERN_C_BEGIN
|
2020-01-15 06:19:42 +08:00
|
|
|
void RTNAME(ProgramStart)(int, const char *[], const char *[]);
|
2020-07-22 08:37:35 +08:00
|
|
|
void RTNAME(ByteswapOption)(); // -byteswapio
|
2020-03-06 14:51:41 +08:00
|
|
|
FORTRAN_EXTERN_C_END
|
2020-01-15 06:19:42 +08:00
|
|
|
|
2020-03-29 12:00:16 +08:00
|
|
|
#endif // FORTRAN_RUNTIME_MAIN_H_
|