xref: /llvm-project/flang/include/flang/Runtime/iostat.h (revision c91ba04328e1ded6f284469a7828d181324d4e30)
1 //===-- include/flang/Runtime/iostat.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 // Defines the values returned by the runtime for IOSTAT= specifiers
10 // on I/O statements.
11 
12 #ifndef FORTRAN_RUNTIME_IOSTAT_H_
13 #define FORTRAN_RUNTIME_IOSTAT_H_
14 
15 #include "flang/Common/api-attrs.h"
16 #include "flang/Runtime/iostat-consts.h"
17 
18 namespace Fortran::runtime::io {
19 
20 RT_API_ATTRS const char *IostatErrorString(int);
21 
22 } // namespace Fortran::runtime::io
23 #endif // FORTRAN_RUNTIME_IOSTAT_H_
24