ldraw/mklist/include/alloc.h

10 lines
165 B
C
Raw Normal View History

2020-09-19 23:38:13 +02:00
#ifndef ALLOC_H
#define ALLOC_H
#define farmalloc(n) malloc((n))
#define farrealloc(i,j) realloc((i),(j))
#define farcoreleft() (0)
#endif /* ALLOC_H */