xref: /llvm-project/libc/src/stdio/generic/stdin.cpp (revision 5aed6d67e3f051262c67e3295476bf13cfc099c4)
1d2024bbcSJoseph Huber //===-- Definition of the global stdin object -----------------------------===//
2d2024bbcSJoseph Huber //
3d2024bbcSJoseph Huber // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4d2024bbcSJoseph Huber // See https://llvm.org/LICENSE.txt for license information.
5d2024bbcSJoseph Huber // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6d2024bbcSJoseph Huber //
7d2024bbcSJoseph Huber //===----------------------------------------------------------------------===//
8d2024bbcSJoseph Huber 
9d2024bbcSJoseph Huber #include "src/__support/File/file.h"
10d2024bbcSJoseph Huber 
11*5aed6d67SMichael Jones #include "hdr/types/FILE.h"
12d2024bbcSJoseph Huber 
13d2024bbcSJoseph Huber extern "C" FILE *stdin;
14