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