summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-04-04 14:55:42 -0400
committerRich Felker <dalias@aerifal.cx>2013-04-04 14:55:42 -0400
commit771c6cead0684487a0699750ff740e3d3894200a (patch)
tree73e93f6072d885109071d28febb26408cce1eac6 /src
parentb5a527f9ff47b0f4b32c606e385a0c27d861a475 (diff)
downloadmusl-771c6cead0684487a0699750ff740e3d3894200a.tar.gz
cleanup wcstombs
remove redundant headers and comments; this file is completely trivial now. also, avoid temp var.
Diffstat (limited to 'src')
-rw-r--r--src/multibyte/wcstombs.c13
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);
}