summaryrefslogtreecommitdiff
path: root/libc/src/stdio/generic/stdin.cpp
AgeCommit message (Collapse)Author
2024-07-11Reland: [libc] Move off_t and stdio macros to proxy hdrs (#98384)Michael Jones
reland of https://github.com/llvm/llvm-project/pull/98215 Additionally adds proxy headers for FILE and the fopencookie types The arm32 build has been failing due to redefinitions of the off_t type. This patch fixes this by moving off_t to a proper proxy header. To do this, it also moves stdio macros to a proxy header to hopefully avoid including this proxy header alongside this public stdio.h.
2023-08-09[libc][Fix] Move generic stdio implementations to a new directoryJoseph Huber
For whatever reason, the CMake did not like having the `generic_` version live in the same directory. This patch pushes them to a new directory, which is probably clearer anyway. Reviewed By: michaelrj Differential Revision: https://reviews.llvm.org/D157544