From 6942f6c9083f5f2347f697b95d93ae09f10b0a88 Mon Sep 17 00:00:00 2001 From: Rot127 Date: Sat, 27 Nov 2021 13:41:07 +0100 Subject: [PATCH] Add missing RZ_API in declaration. --- librz/asm/arch/hexagon/hexagon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librz/asm/arch/hexagon/hexagon.h b/librz/asm/arch/hexagon/hexagon.h index d76bd09a0a4..953aa34dd12 100644 --- a/librz/asm/arch/hexagon/hexagon.h +++ b/librz/asm/arch/hexagon/hexagon.h @@ -547,7 +547,7 @@ char *hex_get_pred_regs(int opcode_reg); char *hex_get_sys_regs(int opcode_reg); char *hex_get_sys_regs64(int opcode_reg); -void hex_extend_op(HexState *state, RZ_INOUT HexOp *op, const bool set_new_extender, const ut32 addr); +RZ_API void hex_extend_op(HexState *state, RZ_INOUT HexOp *op, const bool set_new_extender, const ut32 addr); int resolve_n_register(const int reg_num, const ut32 addr, const HexPkt *p); int hexagon_disasm_instruction(const RzAsm *rz_asm, HexState *state, const ut32 hi_u32, RZ_INOUT HexInsn *hi, HexPkt *pkt); void hexagon_disasm_0x0(const RzAsm *rz_asm, HexState *state, const ut32 hi_u32, RZ_INOUT HexInsn *hi, const ut32 addr, HexPkt *pkt);