diff options
Diffstat (limited to 'contrib/libc++/include/cstdio')
-rw-r--r-- | contrib/libc++/include/cstdio | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/libc++/include/cstdio b/contrib/libc++/include/cstdio index 2a6ec76..718d2f71 100644 --- a/contrib/libc++/include/cstdio +++ b/contrib/libc++/include/cstdio @@ -103,6 +103,18 @@ void perror(const char* s); #pragma GCC system_header #endif +#ifdef getc +inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getc(FILE* __stream) {return getc(__stream);} +#undef getc +inline _LIBCPP_INLINE_VISIBILITY int getc(FILE* __stream) {return __libcpp_getc(__stream);} +#endif // getc + +#ifdef putc +inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __stream);} +#undef putc +inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __stream);} +#endif // putc + _LIBCPP_BEGIN_NAMESPACE_STD using ::FILE; |