1 /* xmalloc.c -- malloc with out of memory checking
2 Copyright (C) 1990,91,92,93,94,95,96,97,2004,2005
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published
8 by the Free Software Foundation; version 2 of the License, or
9 (at your option) any later version.
11 This program 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 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
30 #include <sys/types.h>
32 #if STDC_HEADERS || _LIBC
34 static VOID
*fixup_null_alloc (size_t n
) __THROW
;
35 VOID
*xmalloc (size_t n
) __THROW
;
36 VOID
*xcalloc (size_t n
, size_t s
) __THROW
;
37 VOID
*xrealloc (VOID
*p
, size_t n
) __THROW
;
49 # define _(str) gettext (str)
53 #define EXIT_FAILURE 4
56 /* Exit value when the requested amount of memory is not available.
57 The caller may set it to some other value. */
58 int xmalloc_exit_failure
= EXIT_FAILURE
;
68 p
= malloc ((size_t) 1);
70 error (xmalloc_exit_failure
, 0, _("memory exhausted"));
74 /* Allocate N bytes of memory dynamically, with error checking. */
84 p
= fixup_null_alloc (n
);
88 /* Allocate memory for N elements of S bytes, with error checking. */
98 p
= fixup_null_alloc (n
);
102 /* Change the size of an allocated block of memory P to N bytes,
104 If P is NULL, run xmalloc. */
115 p
= fixup_null_alloc (n
);