[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 09/14] stdlib: make MB_CUR_MAX usable from extern inline
From: |
Bruno Haible |
Subject: |
Re: [PATCH 09/14] stdlib: make MB_CUR_MAX usable from extern inline |
Date: |
Tue, 05 Nov 2024 16:24:10 +0100 |
Paul Eggert wrote:
> diff --git a/lib/stdlib.c b/lib/stdlib.c
> new file mode 100644
> index 0000000000..be331ffbda
> --- /dev/null
> +++ b/lib/stdlib.c
> @@ -0,0 +1,3 @@
> +#include <config.h>
> +#define _GL_STDLIB_INLINE _GL_EXTERN_INLINE
> +#include <stdlib.h>
A file without copyright notice? That runs afoul of the various tools
(in Debian, in GNU gettext, etc.) that check for the existence of a
copyright notice. Cf.
<https://lists.gnu.org/archive/html/bug-gnulib/2020-07/msg00027.html>.
2024-11-05 Bruno Haible <bruno@clisp.org>
stdlib: Add a copyright header.
* lib/stdlib.c: Add a copyright header.
diff --git a/lib/stdlib.c b/lib/stdlib.c
index be331ffbda..521d64627d 100644
--- a/lib/stdlib.c
+++ b/lib/stdlib.c
@@ -1,3 +1,21 @@
+/* Inline functions for <stdlib.h>.
+
+ Copyright (C) 2024 Free Software Foundation, Inc.
+
+ This file is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation; either version 2.1 of the
+ License, or (at your option) any later version.
+
+ This file is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>. */
+
#include <config.h>
+
#define _GL_STDLIB_INLINE _GL_EXTERN_INLINE
#include <stdlib.h>
- [PATCH 04/14] calloc, malloc: tune a bit, (continued)
- [PATCH 04/14] calloc, malloc: tune a bit, Paul Eggert, 2024/11/05
- [PATCH 05/14] realloc: don’t require success for nongrowth, Paul Eggert, 2024/11/05
- [PATCH 06/14] stdlib: simplify preprocessor conditionals, Paul Eggert, 2024/11/05
- [PATCH 07/14] realloc-posix: realloc (..., 0) now returns nonnull, Paul Eggert, 2024/11/05
- [PATCH 08/14] realloc-posix: set CHERI bounds, Paul Eggert, 2024/11/05
- [PATCH 09/14] stdlib: make MB_CUR_MAX usable from extern inline, Paul Eggert, 2024/11/05
- Re: [PATCH 09/14] stdlib: make MB_CUR_MAX usable from extern inline,
Bruno Haible <=
- [PATCH 10/14] realloc-posix: use _GL_USE_STDLIB_ALLOC, Paul Eggert, 2024/11/05
- [PATCH 11/14] realloc-posix: tune for glibc-like, Paul Eggert, 2024/11/05
- [PATCH 12/14] doc: mention Solaris malloc ENOMEM issues, Paul Eggert, 2024/11/05
- [PATCH 13/14] realloc-posix: update doc, Paul Eggert, 2024/11/05