Files
obitools4/pkg/obiapat/apat_mem.h
2022-01-13 23:27:39 +01:00

15 lines
519 B
C

#ifndef __APAT_MEM_H__
#define __APAT_MEM_H__
/* ----------------------------------------------- */
/* macros */
/* ----------------------------------------------- */
#define NEW(typ) (typ*)malloc(sizeof(typ))
#define NEWN(typ, dim) (typ*)malloc((uint64_t)(dim) * sizeof(typ))
#define REALLOC(typ, ptr, dim) (typ*)realloc((void *) (ptr), (uint64_t)(dim) * sizeof(typ))
#define FREE(ptr) free((void *) ptr)
#endif /* __APAT_MEM_H__ */