]> git.cworth.org Git - tar/blob - gnu/malloc.c
Imported Upstream version 1.24
[tar] / gnu / malloc.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* malloc() function that is glibc compatible.
4
5    Copyright (C) 1997-1998, 2006-2007, 2009-2010 Free Software Foundation, Inc.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3, or (at your option)
10    any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software Foundation,
19    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
20
21 /* written by Jim Meyering and Bruno Haible */
22
23 #include <config.h>
24 /* Only the AC_FUNC_MALLOC macro defines 'malloc' already in config.h.  */
25 #ifdef malloc
26 # define NEED_MALLOC_GNU 1
27 # undef malloc
28 /* Whereas the gnulib module 'malloc-gnu' defines HAVE_MALLOC_GNU.  */
29 #elif GNULIB_MALLOC_GNU && !HAVE_MALLOC_GNU
30 # define NEED_MALLOC_GNU 1
31 #endif
32
33 /* Specification.  */
34 #include <stdlib.h>
35
36 #include <errno.h>
37
38 /* Call the system's malloc below.  */
39 #undef malloc
40
41 /* Allocate an N-byte block of memory from the heap.
42    If N is zero, allocate a 1-byte block.  */
43
44 void *
45 rpl_malloc (size_t n)
46 {
47   void *result;
48
49 #if NEED_MALLOC_GNU
50   if (n == 0)
51     n = 1;
52 #endif
53
54   result = malloc (n);
55
56 #if !HAVE_MALLOC_POSIX
57   if (result == NULL)
58     errno = ENOMEM;
59 #endif
60
61   return result;
62 }