mirror of
https://github.com/pybricks/ldraw.git
synced 2025-04-11 18:19:45 +02:00
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 */
|
|
|