Skip to content

Commit 64bade3

Browse files
committed
iostat-funcs.h -> iostat.h
1 parent c4faf05 commit 64bade3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

flang/include/flang/Runtime/iostat-funcs.h renamed to flang/include/flang/Runtime/iostat.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/Runtime/iostat-funcs.h --------------------*- C++ -*-===//
1+
//===-- include/flang/Runtime/iostat.h --------------------------*- C++ -*-===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.
@@ -9,8 +9,8 @@
99
// Defines the values returned by the runtime for IOSTAT= specifiers
1010
// on I/O statements.
1111

12-
#ifndef FORTRAN_RUNTIME_IOSTAT_FUNCS_H_
13-
#define FORTRAN_RUNTIME_IOSTAT_FUNCS_H_
12+
#ifndef FORTRAN_RUNTIME_IOSTAT_H_
13+
#define FORTRAN_RUNTIME_IOSTAT_H_
1414

1515
#include "flang/Common/api-attrs.h"
1616
#include "flang/Runtime/iostat-consts.h"
@@ -21,4 +21,4 @@ RT_API_ATTRS const char *IostatErrorString(int);
2121

2222
} // namespace Fortran::runtime::io
2323

24-
#endif /* FORTRAN_RUNTIME_IOSTAT_FUNCS_H_ */
24+
#endif /* FORTRAN_RUNTIME_IOSTAT_H_ */

flang/runtime/io-error.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#define FORTRAN_RUNTIME_IO_ERROR_H_
1717

1818
#include "terminator.h"
19-
#include "flang/Runtime/iostat-funcs.h"
19+
#include "flang/Runtime/iostat.h"
2020
#include "flang/Runtime/memory.h"
2121
#include <cinttypes>
2222

flang/runtime/iostat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "flang/Runtime/iostat-funcs.h"
9+
#include "flang/Runtime/iostat.h"
1010

1111
namespace Fortran::runtime::io {
1212
RT_OFFLOAD_API_GROUP_BEGIN

0 commit comments

Comments
 (0)