s390x: add single-instruction math functions
[musl.git] / src / multibyte / c32rtomb.c
blob67851328e889a355ebdf2b881c85427463775373
1 #include <uchar.h>
2 #include <wchar.h>
4 size_t c32rtomb(char *restrict s, char32_t c32, mbstate_t *restrict ps)
6 return wcrtomb(s, c32, ps);