blob: 790d923f7da62838b5d0813dd3224276d95b0dbf [file] [log] [blame]
//===-- Implementation header of clearerr -----------------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_STDIO_CLEARERR_H
#define LLVM_LIBC_SRC_STDIO_CLEARERR_H
#include "hdr/types/FILE.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
void clearerr(::FILE *stream);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_STDIO_CLEARERR_H