[lldb] Replace deprecated `std::unique_ptr::unique()` to silence a warning with MS...
[llvm-project.git] / libcxx / modules / std / cstdio.inc
blobeec8170e07917541de2b9b7580b3269e230e7971
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 export namespace std {
11   using std::FILE;
12   using std::fpos_t;
13   using std::size_t;
15   using std::clearerr;
16   using std::fclose;
17   using std::feof;
18   using std::ferror;
19   using std::fflush;
20   using std::fgetc;
21   using std::fgetpos;
22   using std::fgets;
23   using std::fopen;
24   using std::fprintf;
25   using std::fputc;
26   using std::fputs;
27   using std::fread;
28   using std::freopen;
29   using std::fscanf;
30   using std::fseek;
31   using std::fsetpos;
32   using std::ftell;
33   using std::fwrite;
34   using std::getc;
35   using std::getchar;
36   using std::perror;
37   using std::printf;
38   using std::putc;
39   using std::putchar;
40   using std::puts;
41   using std::remove;
42   using std::rename;
43   using std::rewind;
44   using std::scanf;
45   using std::setbuf;
46   using std::setvbuf;
47   using std::snprintf;
48   using std::sprintf;
49   using std::sscanf;
50   using std::tmpfile;
51   using std::tmpnam;
52   using std::ungetc;
53   using std::vfprintf;
54   using std::vfscanf;
55   using std::vprintf;
56   using std::vscanf;
57   using std::vsnprintf;
58   using std::vsprintf;
59   using std::vsscanf;
60 } // namespace std