Select Git revision
solverAlgorithms.h
MallocUtils.h 433 B
// GetDP - Copyright (C) 1997-2018 P. Dular and C. Geuzaine, University of Liege
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to the public mailing list <getdp@onelab.info>.
#ifndef _MALLOC_UTILS_H_
#define _MALLOC_UTILS_H_
#include <stdlib.h>
void *Malloc(size_t size);
void *Calloc(size_t num, size_t size);
void *Realloc(void *ptr, size_t size);
void Free(void *ptr);
#endif