summaryrefslogtreecommitdiff
path: root/libc/src/stdio/generic/fileno.cpp
AgeCommit message (Collapse)Author
2025-02-25[libc] Move fileno and fdopen to fullbuild only (#128762)Michael Jones
Both fileno and fdopen require interfacing with the opaque FILE struct, so they shouldn't be enabled in overlay mode. This patch moves both into fullbuild only on all platforms. Fixes #128643
2024-07-12[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98597)Petr Hosek
This is a part of #97655.
2024-07-12Revert "[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace ↵Mehdi Amini
declaration" (#98593) Reverts llvm/llvm-project#98075 bots are broken
2024-07-11[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98075)Petr Hosek
This is a part of #97655.
2024-07-11[libc] fix fileno includes (#98514)Michael Jones
Fileno was directly including the FILE and so I missed it when replacing all of the direct includes of stdio.h
2024-03-18[libc] Implement fileno (#85628)Shourya Goel
fixes: #85150