about summary refs log tree commit diff
path: root/src/multibyte/internal.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2016-06-21 16:33:14 -0400
committerRich Felker <dalias@aerifal.cx>2016-06-21 16:33:14 -0400
commit6cec7bc57f599f43f4041cec2093e3c9231dbaab (patch)
treee9d8722b6837bb40a2eae992f4a3a158a27e3ff6 /src/multibyte/internal.c
parent1e6fc0b690191005a49468c296ad49d0caacacf1 (diff)
downloadmusl-6cec7bc57f599f43f4041cec2093e3c9231dbaab.tar.gz
musl-6cec7bc57f599f43f4041cec2093e3c9231dbaab.tar.xz
musl-6cec7bc57f599f43f4041cec2093e3c9231dbaab.zip
remove comments on copyright status from UTF-8 implementation files
despite clarifications made to the COPYRIGHT file in commit
f0a61399330bae42beeb27d6ecd05570b3382a60, there continues to be
confusion about whether the permissions granted actually apply to all
files. I am the sole author of these files and clearly intend, and
have always intended, for the grant of permission to apply to them.
Diffstat (limited to 'src/multibyte/internal.c')
-rw-r--r--src/multibyte/internal.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/multibyte/internal.c b/src/multibyte/internal.c
index bbdc4159..7e1b1c03 100644
--- a/src/multibyte/internal.c
+++ b/src/multibyte/internal.c
@@ -1,9 +1,3 @@
-/* 
- * 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 "internal.h"
 
 #define C(x) ( x<2 ? -1 : ( R(0x80,0xc0) | x ) )