반응형
int putchar(int c)
#include <stdio.h> #undef putchar_unlocked /* * A subrouting version of the macro putchar_unlocked */ int putchar_unlocked(int c) { FILE *so = stdout; return (putc_unlocked(c,so)); } #undef putchar /* * A subroutine version of the macro putchar */ int putchar(int c) { FILE *so = stdout; return (putc(c, so)); }
반응형