File: xmalloc.c

package info (click to toggle)
lash 0.5.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,224 kB
  • ctags: 1,245
  • sloc: ansic: 11,677; sh: 8,933; makefile: 264; python: 36
file content (92 lines) | stat: -rw-r--r-- 1,679 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 *   LASH
 *    
 *   Copyright (C) 2002 Robert Ham <rah@bash.sh>
 *    
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#define _GNU_SOURCE

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include "config.h"
#include <lash/lash.h>
#include <lash/xmalloc.h>

#ifdef LASH_DEBUG

void *
lash_xmalloc(size_t size)
{
	void *ptr;

	ptr = malloc(size);

	if (!ptr) {
		fprintf(stderr, "%s: could not allocate memory; aborting\n",
				__FUNCTION__);
		abort();
	}

	return ptr;
}

void *
lash_xrealloc(void *data, size_t size)
{
	void *ptr;

	ptr = realloc(data, size);

	if (!ptr) {
		fprintf(stderr, "%s: could not allocate memory; aborting\n",
				__FUNCTION__);
		abort();
	}

	return ptr;
}

char *
lash_xstrdup(const char *string)
{
	void *str;

	str = strdup(string);

	if (!str) {
		fprintf(stderr, "%s: could not allocate memory; aborting\n",
				__FUNCTION__);
		abort();
	}

	return str;
}

#endif /* LASH_DEBUG */

void *
lash_malloc0(size_t size)
{
	void *data;

	data = lash_malloc(size);

	memset(data, 0, size);

	return data;
}