]> git.cworth.org Git - tar/blob - gnu/realloc.c
Imported Upstream version 1.24
[tar] / gnu / realloc.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* realloc() function that is glibc compatible.
4
5    Copyright (C) 1997, 2003-2004, 2006-2007, 2009-2010 Free Software
6    Foundation, Inc.
7
8    This program is free software: you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 /* written by Jim Meyering and Bruno Haible */
22
23 #include <config.h>
24
25 /* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h.  */
26 #ifdef realloc
27 # define NEED_REALLOC_GNU 1
28 /* Whereas the gnulib module 'realloc-gnu' defines HAVE_REALLOC_GNU.  */
29 #elif GNULIB_REALLOC_GNU && !HAVE_REALLOC_GNU
30 # define NEED_REALLOC_GNU 1
31 #endif
32
33 /* Infer the properties of the system's malloc function.
34    The gnulib module 'malloc-gnu' defines HAVE_MALLOC_GNU.  */
35 #if GNULIB_MALLOC_GNU && HAVE_MALLOC_GNU
36 # define SYSTEM_MALLOC_GLIBC_COMPATIBLE 1
37 #endif
38
39 /* Below we want to call the system's malloc and realloc.
40    Undefine the symbols here so that including <stdlib.h> provides a
41    declaration of malloc(), not of rpl_malloc(), and likewise for realloc.  */
42 #undef malloc
43 #undef realloc
44
45 /* Specification.  */
46 #include <stdlib.h>
47
48 #include <errno.h>
49
50 /* Below we want to call the system's malloc and realloc.
51    Undefine the symbols, if they were defined by gnulib's <stdlib.h>
52    replacement.  */
53 #undef malloc
54 #undef realloc
55
56 /* Change the size of an allocated block of memory P to N bytes,
57    with error checking.  If N is zero, change it to 1.  If P is NULL,
58    use malloc.  */
59
60 void *
61 rpl_realloc (void *p, size_t n)
62 {
63   void *result;
64
65 #if NEED_REALLOC_GNU
66   if (n == 0)
67     {
68       n = 1;
69
70       /* In theory realloc might fail, so don't rely on it to free.  */
71       free (p);
72       p = NULL;
73     }
74 #endif
75
76   if (p == NULL)
77     {
78 #if GNULIB_REALLOC_GNU && !NEED_REALLOC_GNU && !SYSTEM_MALLOC_GLIBC_COMPATIBLE
79       if (n == 0)
80         n = 1;
81 #endif
82       result = malloc (n);
83     }
84   else
85     result = realloc (p, n);
86
87 #if !HAVE_REALLOC_POSIX
88   if (result == NULL)
89     errno = ENOMEM;
90 #endif
91
92   return result;
93 }