File: malloc.c

package info (click to toggle)
denemo 2.6.49-0.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 66,916 kB
  • sloc: ansic: 94,587; lisp: 38,713; xml: 22,675; python: 1,930; sh: 1,239; makefile: 642; yacc: 288; sed: 93
file content (24 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 */

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

void *safe_malloc(int size)
{
	void *p;
	p = (void*)calloc(size, 1);
	if (p == NULL) {
		fprintf(stderr, "can't malloc buffer for size %d!!\n", size);
		exit(1);
	}
	return p;
}

void safe_free(void *buf)
{
	if (buf)
		free(buf);
}