Skip to content

Commit 4c4b6bc

Browse files
committed
make gcc happy
1 parent 178df71 commit 4c4b6bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/src/__support/stdio/fopen.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ namespace LIBC_NAMESPACE_DECL {
1717

1818
namespace stdio_internal {
1919

20-
LIBC_INLINE static constexpr ::FILE *fopen(const char *__restrict name,
21-
const char *__restrict mode) {
20+
LIBC_INLINE static ::FILE *fopen(const char *__restrict name,
21+
const char *__restrict mode) {
2222
auto result = LIBC_NAMESPACE::openfile(name, mode);
2323
if (!result.has_value()) {
2424
libc_errno = result.error();

0 commit comments

Comments
 (0)