From 4bea2f3638c9f4f3a5402350cc2bee919b7e4824 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 1 Jan 2016 17:39:24 +0100 Subject: bump year MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/string/mem/memcasecmp.c | 2 +- src/string/mem/memcasemem.c | 2 +- src/string/mem/memccpy.c | 2 +- src/string/mem/memchr.c | 2 +- src/string/mem/memcmove.c | 2 +- src/string/mem/memcmp.c | 2 +- src/string/mem/memcpy.c | 2 +- src/string/mem/memdup.c | 2 +- src/string/mem/memmem.c | 2 +- src/string/mem/memmove.c | 2 +- src/string/mem/mempcpy.c | 2 +- src/string/mem/mempmove.c | 2 +- src/string/mem/memrchr.c | 2 +- src/string/mem/memset.c | 2 +- src/string/mem/rawmemchr.c | 2 +- src/string/mem/substring.h | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) (limited to 'src/string/mem') diff --git a/src/string/mem/memcasecmp.c b/src/string/mem/memcasecmp.c index 816c954..722af6a 100644 --- a/src/string/mem/memcasecmp.c +++ b/src/string/mem/memcasecmp.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memcasemem.c b/src/string/mem/memcasemem.c index b15daea..500e0d8 100644 --- a/src/string/mem/memcasemem.c +++ b/src/string/mem/memcasemem.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memccpy.c b/src/string/mem/memccpy.c index f5c669e..fbc421e 100644 --- a/src/string/mem/memccpy.c +++ b/src/string/mem/memccpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memchr.c b/src/string/mem/memchr.c index 06c82a8..14986a6 100644 --- a/src/string/mem/memchr.c +++ b/src/string/mem/memchr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memcmove.c b/src/string/mem/memcmove.c index c1cf8ae..40d24ce 100644 --- a/src/string/mem/memcmove.c +++ b/src/string/mem/memcmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memcmp.c b/src/string/mem/memcmp.c index 1de506d..71a3cd1 100644 --- a/src/string/mem/memcmp.c +++ b/src/string/mem/memcmp.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memcpy.c b/src/string/mem/memcpy.c index ccf716b..546e6c8 100644 --- a/src/string/mem/memcpy.c +++ b/src/string/mem/memcpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memdup.c b/src/string/mem/memdup.c index 3e3be99..424462e 100644 --- a/src/string/mem/memdup.c +++ b/src/string/mem/memdup.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memmem.c b/src/string/mem/memmem.c index 71d1f4d..8d9c053 100644 --- a/src/string/mem/memmem.c +++ b/src/string/mem/memmem.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memmove.c b/src/string/mem/memmove.c index 00ee9c1..409a743 100644 --- a/src/string/mem/memmove.c +++ b/src/string/mem/memmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/mempcpy.c b/src/string/mem/mempcpy.c index 97b81f1..e078a45 100644 --- a/src/string/mem/mempcpy.c +++ b/src/string/mem/mempcpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/mempmove.c b/src/string/mem/mempmove.c index 415e38b..7f26e9b 100644 --- a/src/string/mem/mempmove.c +++ b/src/string/mem/mempmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memrchr.c b/src/string/mem/memrchr.c index 2781a71..2f382c5 100644 --- a/src/string/mem/memrchr.c +++ b/src/string/mem/memrchr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/memset.c b/src/string/mem/memset.c index 047620b..8db0b84 100644 --- a/src/string/mem/memset.c +++ b/src/string/mem/memset.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/rawmemchr.c b/src/string/mem/rawmemchr.c index afaae48..b8c6739 100644 --- a/src/string/mem/rawmemchr.c +++ b/src/string/mem/rawmemchr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/string/mem/substring.h b/src/string/mem/substring.h index 0063094..93f2bfb 100644 --- a/src/string/mem/substring.h +++ b/src/string/mem/substring.h @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by -- cgit v1.2.3-70-g09d2