summaryrefslogtreecommitdiff
path: root/src/common/mem.c
diff options
context:
space:
mode:
authorpacien2018-01-09 16:14:18 +0100
committerpacien2018-01-09 16:14:18 +0100
commit38195a70192301e7df5b69bf2266a04a0b90a532 (patch)
tree2ad004884b1d5348e7b0812e514293eda3cd7d66 /src/common/mem.c
parent76cb6ee14cb72eba8df8112604d9c2e8598d2448 (diff)
downloadmorpher-master.tar.gz
Update report, add authorship to C filesHEADmaster
Signed-off-by: pacien <pacien.trangirard@pacien.net>
Diffstat (limited to 'src/common/mem.c')
-rw-r--r--src/common/mem.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/mem.c b/src/common/mem.c
index 855e010..02bd8c5 100644
--- a/src/common/mem.c
+++ b/src/common/mem.c
@@ -2,6 +2,13 @@
2#include <stdlib.h> 2#include <stdlib.h>
3#include "common/error.h" 3#include "common/error.h"
4 4
5/**
6 * File: error.c
7 *
8 * Author:
9 * Pacien TRAN-GIRARD
10 */
11
5void *malloc_or_die(size_t size) { 12void *malloc_or_die(size_t size) {
6 void *ptr = malloc(size); 13 void *ptr = malloc(size);
7 14