ldraw/mklist/src/include/alloc.h
Laurens Valk 070073db9f
mklist: Move makefile one level up.
Seperate it from source.
2020-09-20 20:58:24 +02:00

10 lines
165 B
C

#ifndef ALLOC_H
#define ALLOC_H
#define farmalloc(n) malloc((n))
#define farrealloc(i,j) realloc((i),(j))
#define farcoreleft() (0)
#endif /* ALLOC_H */