putwc.c 84 B

123456
  1. #include "stdio_impl.h"
  2. wint_t putwc(wchar_t c, FILE *f)
  3. {
  4. return fputwc(c, f);
  5. }