Upgrade grep version 2.7 to 2.9 on the vendor branch
[dragonfly.git] / contrib / grep / lib / 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-2011 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 #define _GL_USE_STDLIB_ALLOC 1
24 #include <config.h>
25 /* Only the AC_FUNC_MALLOC macro defines 'malloc' already in config.h.  */
26 #ifdef malloc
27 # define NEED_MALLOC_GNU 1
28 # undef malloc
29 /* Whereas the gnulib module 'malloc-gnu' defines HAVE_MALLOC_GNU.  */
30 #elif GNULIB_MALLOC_GNU && !HAVE_MALLOC_GNU
31 # define NEED_MALLOC_GNU 1
32 #endif
33
34 #include <stdlib.h>
35
36 #include <errno.h>
37
38 /* Allocate an N-byte block of memory from the heap.
39    If N is zero, allocate a 1-byte block.  */
40
41 void *
42 rpl_malloc (size_t n)
43 {
44   void *result;
45
46 #if NEED_MALLOC_GNU
47   if (n == 0)
48     n = 1;
49 #endif
50
51   result = malloc (n);
52
53 #if !HAVE_MALLOC_POSIX
54   if (result == NULL)
55     errno = ENOMEM;
56 #endif
57
58   return result;
59 }