1 /* realloc() function that is glibc compatible.
3 Copyright (C) 1997, 2003-2004, 2006-2007, 2009-2022 Free Software
6 This file is free software: you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 This file is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
19 /* written by Jim Meyering and Bruno Haible */
27 #include "xalloc-oversized.h"
29 /* Call the system's realloc below. This file does not define
30 _GL_USE_STDLIB_ALLOC because it needs Gnulib's malloc if present. */
33 /* Change the size of an allocated block of memory P to N bytes,
34 with error checking. If P is NULL, use malloc. Otherwise if N is zero,
35 free P and return NULL. */
38 rpl_realloc (void *p
, size_t n
)
49 if (xalloc_oversized (n
, 1))
55 void *result
= realloc (p
, n
);
57 #if !HAVE_MALLOC_POSIX