1a7c91847Schristos /* realloc() function that is glibc compatible.
2a7c91847Schristos Copyright (C) 1997, 2003, 2004 Free Software Foundation, Inc.
3a7c91847Schristos
4a7c91847Schristos This program is free software; you can redistribute it and/or modify
5a7c91847Schristos it under the terms of the GNU General Public License as published by
6a7c91847Schristos the Free Software Foundation; either version 2, or (at your option)
7a7c91847Schristos any later version.
8a7c91847Schristos
9a7c91847Schristos This program is distributed in the hope that it will be useful,
10a7c91847Schristos but WITHOUT ANY WARRANTY; without even the implied warranty of
11a7c91847Schristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12a7c91847Schristos GNU General Public License for more details.
13a7c91847Schristos
14a7c91847Schristos You should have received a copy of the GNU General Public License
15a7c91847Schristos along with this program; if not, write to the Free Software Foundation,
16a7c91847Schristos Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
17*5a6c14c8Schristos #include <sys/cdefs.h>
18*5a6c14c8Schristos __RCSID("$NetBSD: realloc.c,v 1.2 2016/05/17 14:00:09 christos Exp $");
19*5a6c14c8Schristos
20a7c91847Schristos
21a7c91847Schristos /* written by Jim Meyering */
22a7c91847Schristos
23a7c91847Schristos #ifdef HAVE_CONFIG_H
24a7c91847Schristos # include <config.h>
25a7c91847Schristos #endif
26a7c91847Schristos #undef realloc
27a7c91847Schristos
28a7c91847Schristos #include <stdlib.h>
29a7c91847Schristos
30a7c91847Schristos /* Change the size of an allocated block of memory P to N bytes,
31a7c91847Schristos with error checking. If N is zero, change it to 1. If P is NULL,
32a7c91847Schristos use malloc. */
33a7c91847Schristos
34a7c91847Schristos void *
rpl_realloc(void * p,size_t n)35a7c91847Schristos rpl_realloc (void *p, size_t n)
36a7c91847Schristos {
37a7c91847Schristos if (n == 0)
38a7c91847Schristos {
39a7c91847Schristos n = 1;
40a7c91847Schristos
41a7c91847Schristos /* In theory realloc might fail, so don't rely on it to free. */
42a7c91847Schristos free (p);
43a7c91847Schristos p = NULL;
44a7c91847Schristos }
45a7c91847Schristos
46a7c91847Schristos if (p == NULL)
47a7c91847Schristos return malloc (n);
48a7c91847Schristos return realloc (p, n);
49a7c91847Schristos }
50