Home | History | Annotate | Download | only in patches.android

Lines Matching full:putchar

4 Subject: [PATCH 08/12] Remove gcc warning about redefinition of putchar with
7 In NDK bionic's stdio.h, putchar appears as both a function prototype and a macro
12 int putchar(int);
14 Undefine putchar to avoid redefinition, and putchar does exist in libc.so
28 +// In bionic's stdio.h, putchar appears as both a function prototype and a macro (later
33 +// int putchar(int);
35 +// Undefine putchar to avoid redefinition, and putchar does exist in libc.so
37 +#undef putchar
40 #ifdef putchar
41 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putchar(int __c) {return putchar(__c);}
42 #undef putchar