mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-24 00:18:39 +00:00
9 lines
163 B
C
9 lines
163 B
C
#ifndef LEMON_MEMORY_H
|
|
#define LEMON_MEMORY_H
|
|
|
|
extern void memory_error();
|
|
#define MemoryCheck(X) if ((X) == 0) { \
|
|
memory_error(); \
|
|
}
|
|
|
|
#endif // LEMON_MEMORY_H
|