LO41/Objects.c

13 lines
207 B
C

//
// Created by Antoine Bartuccio on 22/05/2018.
//
#include "Objects.h"
void *malloc_or_die(size_t size){
void *ptr = malloc(size);
if (ptr == NULL)
perror("Error allocating object");
return ptr;
}