diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2022-01-19 12:07:33 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2022-01-19 12:07:33 +0200 |
commit | 401405f5a38dc4214d24c5390cd35d71e82405ed (patch) | |
tree | 729bf8b5e2681e1e74a7a2bafe6858d387a55aaf /support/malloc | |
parent | 8cde2e44a252ac2d80ec3f539d9c2157e8aea33e (diff) | |
parent | 18213a779d239baf5e24ba52d77ba920f314ab7e (diff) | |
download | egawk-401405f5a38dc4214d24c5390cd35d71e82405ed.tar.gz egawk-401405f5a38dc4214d24c5390cd35d71e82405ed.tar.bz2 egawk-401405f5a38dc4214d24c5390cd35d71e82405ed.zip |
Merge branch 'master' into feature/readall
Diffstat (limited to 'support/malloc')
-rw-r--r-- | support/malloc/dynarray-skeleton.c | 2 | ||||
-rw-r--r-- | support/malloc/dynarray.h | 2 | ||||
-rw-r--r-- | support/malloc/dynarray_at_failure.c | 2 | ||||
-rw-r--r-- | support/malloc/dynarray_emplace_enlarge.c | 2 | ||||
-rw-r--r-- | support/malloc/dynarray_finalize.c | 2 | ||||
-rw-r--r-- | support/malloc/dynarray_resize.c | 2 | ||||
-rw-r--r-- | support/malloc/dynarray_resize_clear.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/support/malloc/dynarray-skeleton.c b/support/malloc/dynarray-skeleton.c index 48210e32..bad548a4 100644 --- a/support/malloc/dynarray-skeleton.c +++ b/support/malloc/dynarray-skeleton.c @@ -1,5 +1,5 @@ /* Type-safe arrays which grow dynamically. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/support/malloc/dynarray.h b/support/malloc/dynarray.h index 638c33f9..f16fd950 100644 --- a/support/malloc/dynarray.h +++ b/support/malloc/dynarray.h @@ -1,5 +1,5 @@ /* Type-safe arrays which grow dynamically. Shared definitions. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/support/malloc/dynarray_at_failure.c b/support/malloc/dynarray_at_failure.c index 8dd68507..062ab706 100644 --- a/support/malloc/dynarray_at_failure.c +++ b/support/malloc/dynarray_at_failure.c @@ -1,5 +1,5 @@ /* Report an dynamic array index out of bounds condition. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/support/malloc/dynarray_emplace_enlarge.c b/support/malloc/dynarray_emplace_enlarge.c index 0f8baf94..0cff2e70 100644 --- a/support/malloc/dynarray_emplace_enlarge.c +++ b/support/malloc/dynarray_emplace_enlarge.c @@ -1,5 +1,5 @@ /* Increase the size of a dynamic array in preparation of an emplace operation. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/support/malloc/dynarray_finalize.c b/support/malloc/dynarray_finalize.c index c33da413..3f360c3a 100644 --- a/support/malloc/dynarray_finalize.c +++ b/support/malloc/dynarray_finalize.c @@ -1,5 +1,5 @@ /* Copy the dynamically-allocated area to an explicitly-sized heap allocation. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/support/malloc/dynarray_resize.c b/support/malloc/dynarray_resize.c index 5a57166a..8d1922e5 100644 --- a/support/malloc/dynarray_resize.c +++ b/support/malloc/dynarray_resize.c @@ -1,5 +1,5 @@ /* Increase the size of a dynamic array. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/support/malloc/dynarray_resize_clear.c b/support/malloc/dynarray_resize_clear.c index 9c43b00c..8cf1b0d0 100644 --- a/support/malloc/dynarray_resize_clear.c +++ b/support/malloc/dynarray_resize_clear.c @@ -1,5 +1,5 @@ /* Increase the size of a dynamic array and clear the new part. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or |