]> Savannah Git Hosting - gnulib.git/commitdiff
ialloc: Put appropriate license notice in source files.
authorBruno Haible <bruno@clisp.org>
Sun, 13 Jun 2021 10:02:08 +0000 (12:02 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 13 Jun 2021 10:02:08 +0000 (12:02 +0200)
* lib/ialloc.h: Use LGPLv3+ notice.
* lib/ialloc.c: Likewise.

ChangeLog
lib/ialloc.c
lib/ialloc.h

index c9fd316ab4ecb14a46adda13546a24a10aafab42..b48760c6e75822aec353298152ec98db3302e8b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2021-06-13  Bruno Haible  <bruno@clisp.org>
+
+       ialloc: Put appropriate license notice in source files.
+       * lib/ialloc.h: Use LGPLv3+ notice.
+       * lib/ialloc.c: Likewise.
+
 2021-06-11  Paul Eggert  <eggert@cs.ucla.edu>
 
        xalloc: new idx_t-based allocators
index 9eff290357f13579b1724961b15353710b3593a4..f506b8402e573d97fcc2c60509322356f179fec7 100644 (file)
@@ -1,3 +1,21 @@
+/* malloc with idx_t rather than size_t
+
+   Copyright 2021 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 3 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 IALLOC_INLINE _GL_EXTERN_INLINE
 #include "ialloc.h"
index e243c928c0ebbe35c270e0e21770b321b0eab05a..ebe4aaa3cf485b92139aba8c8775fc462d89a7d3 100644 (file)
@@ -2,17 +2,17 @@
 
    Copyright 2021 Free Software Foundation, Inc.
 
-   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
-   the Free Software Foundation; either version 3 of the License, or
-   (at your option) any later version.
+   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 3 of the
+   License, or (at your option) any later version.
 
-   This program is distributed in the hope that it will be useful,
+   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 General Public License for more details.
+   GNU Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
+   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/>.  */
 
 #ifndef IALLOC_H_