math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / src / stdio / putwc.c
1 #include "stdio_impl.h"
2 #include <wchar.h>
3
4 wint_t putwc(wchar_t c, FILE *f)
5 {
6         return fputwc(c, f);
7 }