diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2016-01-01 17:39:24 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2016-01-01 17:39:24 +0100 |
commit | 4bea2f3638c9f4f3a5402350cc2bee919b7e4824 (patch) | |
tree | b4a799bdbc93d2ff761fb551037b0594cd0aa446 /src/strings | |
parent | m bug fix: reopen: closed wrong fd (diff) | |
download | slibc-4bea2f3638c9f4f3a5402350cc2bee919b7e4824.tar.gz slibc-4bea2f3638c9f4f3a5402350cc2bee919b7e4824.tar.bz2 slibc-4bea2f3638c9f4f3a5402350cc2bee919b7e4824.tar.xz |
bump year
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'src/strings')
-rw-r--r-- | src/strings/bcmp.c | 2 | ||||
-rw-r--r-- | src/strings/bcopy.c | 2 | ||||
-rw-r--r-- | src/strings/bzero.c | 2 | ||||
-rw-r--r-- | src/strings/explicit_bzero.c | 2 | ||||
-rw-r--r-- | src/strings/ffs.c | 2 | ||||
-rw-r--r-- | src/strings/ffsl.c | 2 | ||||
-rw-r--r-- | src/strings/ffsll.c | 2 | ||||
-rw-r--r-- | src/strings/index.c | 2 | ||||
-rw-r--r-- | src/strings/rindex.c | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/src/strings/bcmp.c b/src/strings/bcmp.c index 34c2849..ec4190b 100644 --- a/src/strings/bcmp.c +++ b/src/strings/bcmp.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/strings/bcopy.c b/src/strings/bcopy.c index 1a674e2..a6fd425 100644 --- a/src/strings/bcopy.c +++ b/src/strings/bcopy.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/strings/bzero.c b/src/strings/bzero.c index 01ba671..0b2859c 100644 --- a/src/strings/bzero.c +++ b/src/strings/bzero.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/strings/explicit_bzero.c b/src/strings/explicit_bzero.c index 34e2cac..42e46b4 100644 --- a/src/strings/explicit_bzero.c +++ b/src/strings/explicit_bzero.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/strings/ffs.c b/src/strings/ffs.c index e51c0cf..4c84a31 100644 --- a/src/strings/ffs.c +++ b/src/strings/ffs.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/strings/ffsl.c b/src/strings/ffsl.c index a93387b..6121fa3 100644 --- a/src/strings/ffsl.c +++ b/src/strings/ffsl.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/strings/ffsll.c b/src/strings/ffsll.c index c643b41..b3d6a68 100644 --- a/src/strings/ffsll.c +++ b/src/strings/ffsll.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/strings/index.c b/src/strings/index.c index 543fffe..43ed56a 100644 --- a/src/strings/index.c +++ b/src/strings/index.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/strings/rindex.c b/src/strings/rindex.c index b131367..b08f4bf 100644 --- a/src/strings/rindex.c +++ b/src/strings/rindex.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 |