Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v6.11 11 lines 157 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 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}