summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-04-04 14:53:53 -0400
committerRich Felker <dalias@aerifal.cx>2013-04-04 14:53:53 -0400
commitb5a527f9ff47b0f4b32c606e385a0c27d861a475 (patch)
tree456b94e665e2207cf2c90137f3f84b8a3166186c
parentf62b12d051d68aae8bf3c0891f8f809c1fd75e4e (diff)
downloadmusl-b5a527f9ff47b0f4b32c606e385a0c27d861a475.tar.gz
cleanup mbstowcs wrapper
remove unneeded headers. this file is utterly trivial now and there's no sense in having a comment to state that it's in the public domain.
-rw-r--r--src/multibyte/mbstowcs.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/multibyte/mbstowcs.c b/src/multibyte/mbstowcs.c
index 8e3fac15..dc0d4594 100644
--- a/src/multibyte/mbstowcs.c
+++ b/src/multibyte/mbstowcs.c
@@ -1,15 +1,5 @@
-/*
- * 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 mbstowcs(wchar_t *restrict ws, const char *restrict s, size_t wn)
{