1 /* xmalloc.c - standard malloc wrappers
2 * Copyright (C) 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
4 * This file is part of JNLIB.
6 * JNLIB is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation; either version 3 of
9 * the License, or (at your option) any later version.
11 * JNLIB is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this program; if not, see <http://www.gnu.org/licenses/>.
25 #include "libjnlib-config.h"
31 fputs("\nfatal: out of memory\n", stderr
);
39 void *p
= malloc( n
);
46 xrealloc( void *a
, size_t n
)
48 void *p
= realloc( a
, n
);
55 xcalloc( size_t n
, size_t m
)
57 void *p
= calloc( n
, m
);
64 xstrdup( const char *string
)
66 void *p
= xmalloc( strlen(string
)+1 );
73 xstrcat2( const char *a
, const char *b
)
82 p
= xmalloc( n1
+ strlen(b
) + 1 );