From 771c6cead0684487a0699750ff740e3d3894200a Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 4 Apr 2013 14:55:42 -0400 Subject: cleanup wcstombs remove redundant headers and comments; this file is completely trivial now. also, avoid temp var. --- src/multibyte/wcstombs.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'src') 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 -#include #include -#include - -#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); } -- cgit v1.2.1