Home | History | Annotate | Download | only in include

Lines Matching full:putchar

79 int putchar(int c);
130 // In bionic's stdio.h, putchar appears as both a function prototype and a macro (later
135 // int putchar(int);
137 // Undefine putchar to avoid redefinition, and putchar does exist in libc.so
139 #undef putchar
142 #ifdef putchar
143 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putchar(int __c) {return putchar(__c);}
144 #undef putchar
145 inline _LIBCPP_INLINE_VISIBILITY int putchar(int __c) {return __libcpp_putchar(__c);}
146 #endif // putchar
208 using ::putchar;