1/* 2 * SPDX-License-Identifier: CDDL 1.0 3 * 4 * Copyright 2023 Christos Margiolis <[email protected]> 5 */ 6 7#include <sys/types.h> 8#include <sys/dtrace.h> 9 10int 11dtrace_instr_size(uint8_t *instr __unused) 12{ 13 return (INSN_SIZE); 14} 15 16