mirror of https://github.com/pybricks/ldraw.git
10 lines
165 B
C
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 */
|
||
|
|