brintos

brintos / linux-shallow public Read only

0
0
Text · 157 B · fbe8dba Raw
12 lines · c
1// SPDX-License-Identifier: GPL-2.02 3#include <capstone/capstone.h>4 5int main(void)6{7	csh handle;8 9	cs_open(CS_ARCH_X86, CS_MODE_64, &handle);10	return 0;11}12