blob: 71cd21e2e40fff9c97b1e361e47d5f22df69607b [file]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Implementation header for vwarn.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_ERR_VWARN_H
#define LLVM_LIBC_SRC_ERR_VWARN_H
#include "src/__support/macros/config.h"
#include <stdarg.h>
namespace LIBC_NAMESPACE_DECL {
void vwarn(const char *fmt, va_list args);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_ERR_VWARN_H