mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
14 lines
223 B
C
14 lines
223 B
C
#ifndef IR_PHP_H
|
|
#define IR_PHP_H
|
|
|
|
#include "zend.h"
|
|
|
|
#define IR_PHP_OPS(_)
|
|
|
|
#define ir_mem_malloc emalloc
|
|
#define ir_mem_calloc ecalloc
|
|
#define ir_mem_realloc erealloc
|
|
#define ir_mem_free efree
|
|
|
|
#endif /* IR_PHP_H */
|