116d5c242SMichael Jones //===-- Implementation header of vprintf ------------------------*- C++ -*-===// 216d5c242SMichael Jones // 316d5c242SMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 416d5c242SMichael Jones // See https://llvm.org/LICENSE.txt for license information. 516d5c242SMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 616d5c242SMichael Jones // 716d5c242SMichael Jones //===----------------------------------------------------------------------===// 816d5c242SMichael Jones 916d5c242SMichael Jones #ifndef LLVM_LIBC_SRC_STDIO_VPRINTF_H 1016d5c242SMichael Jones #define LLVM_LIBC_SRC_STDIO_VPRINTF_H 1116d5c242SMichael Jones 125aed6d67SMichael Jones #include "hdr/types/FILE.h" 13*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 1416d5c242SMichael Jones #include <stdarg.h> 1516d5c242SMichael Jones 16*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 1716d5c242SMichael Jones 1816d5c242SMichael Jones int vprintf(const char *__restrict format, va_list vlist); 1916d5c242SMichael Jones 20*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 2116d5c242SMichael Jones 2216d5c242SMichael Jones #endif // LLVM_LIBC_SRC_STDIO_VPRINTF_H 23