1*ba7e1cddSMichael Jones //===-- Implementation header of fprintf ------------------------*- C++ -*-===//
2*ba7e1cddSMichael Jones //
3*ba7e1cddSMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*ba7e1cddSMichael Jones // See https://llvm.org/LICENSE.txt for license information.
5*ba7e1cddSMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*ba7e1cddSMichael Jones //
7*ba7e1cddSMichael Jones //===----------------------------------------------------------------------===//
8*ba7e1cddSMichael Jones 
9*ba7e1cddSMichael Jones #ifndef LLVM_LIBC_SRC_STDIO_FPRINTF_H
10*ba7e1cddSMichael Jones #define LLVM_LIBC_SRC_STDIO_FPRINTF_H
11*ba7e1cddSMichael Jones 
12*ba7e1cddSMichael Jones #include <stdio.h>
13*ba7e1cddSMichael Jones 
14*ba7e1cddSMichael Jones namespace __llvm_libc {
15*ba7e1cddSMichael Jones 
16*ba7e1cddSMichael Jones int fprintf(::FILE *__restrict stream, const char *__restrict format, ...);
17*ba7e1cddSMichael Jones 
18*ba7e1cddSMichael Jones } // namespace __llvm_libc
19*ba7e1cddSMichael Jones 
20*ba7e1cddSMichael Jones #endif // LLVM_LIBC_SRC_STDIO_FPRINTF_H
21