5024529f96da67d0358fd7ec43137e4508e28309
[platform/upstream/llvm.git] / clang-tools-extra / test / clang-tidy / checkers / Inputs / Headers / cstdio
1 //===--- cstdio - Stub header for tests -------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef _STDIO_
10 #define _STDIO_
11
12 #include <stdio.h>
13
14 namespace std {
15   using ::FILE;
16   using ::printf;
17   using ::fprintf;
18 }
19
20 #endif // _STDIO_
21