putwchar.c 144 B

123456789
  1. #include "stdio_impl.h"
  2. #include <wchar.h>
  3. wint_t putwchar(wchar_t c)
  4. {
  5. return fputwc(c, stdout);
  6. }
  7. weak_alias(putwchar, putwchar_unlocked);