blob: 693d555ce96ff7ec12d2ac7819ee4714d2abb88d (
plain)
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
|
/*
* blogc: A blog compiler.
* Copyright (C) 2014-2016 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#include <stdlib.h>
#include <stdio.h>
#include "utils.h"
void*
b_malloc(size_t size)
{
// simple things simple!
void *rv = malloc(size);
if (rv == NULL) {
fprintf(stderr, "fatal error: Failed to allocate memory!\n");
exit(1);
}
return rv;
}
void*
b_realloc(void *ptr, size_t size)
{
// simple things even simpler :P
void *rv = realloc(ptr, size);
if (rv == NULL && size != 0) {
fprintf(stderr, "fatal error: Failed to reallocate memory!\n");
free(ptr);
exit(1);
}
return rv;
}
|