diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-04-04 14:55:42 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-04-04 14:55:42 -0400 |
commit | 771c6cead0684487a0699750ff740e3d3894200a (patch) | |
tree | 73e93f6072d885109071d28febb26408cce1eac6 /src/multibyte | |
parent | b5a527f9ff47b0f4b32c606e385a0c27d861a475 (diff) | |
download | musl-771c6cead0684487a0699750ff740e3d3894200a.tar.gz musl-771c6cead0684487a0699750ff740e3d3894200a.tar.xz musl-771c6cead0684487a0699750ff740e3d3894200a.zip |
cleanup wcstombs
remove redundant headers and comments; this file is completely trivial now. also, avoid temp var.
Diffstat (limited to 'src/multibyte')
-rw-r--r-- | src/multibyte/wcstombs.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/multibyte/wcstombs.c b/src/multibyte/wcstombs.c index b6ae4732..ab152874 100644 --- a/src/multibyte/wcstombs.c +++ b/src/multibyte/wcstombs.c @@ -1,18 +1,7 @@ -/* - * This code was written by Rich Felker in 2010; no copyright is claimed. - * This code is in the public domain. Attribution is appreciated but - * unnecessary. - */ - #include <stdlib.h> -#include <inttypes.h> #include <wchar.h> -#include <errno.h> - -#include "internal.h" size_t wcstombs(char *restrict s, const wchar_t *restrict ws, size_t n) { - const wchar_t * x = ws; - return wcsrtombs(s, &x, n, 0); + return wcsrtombs(s, &(const wchar_t *){ws}, n, 0); } |