mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-19 22:11:22 +00:00
12 lines
157 B
C
12 lines
157 B
C
|
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
|
|
||
|
|
#include <capstone/capstone.h>
|
||
|
|
|
||
|
|
int main(void)
|
||
|
|
{
|
||
|
|
csh handle;
|
||
|
|
|
||
|
|
cs_open(CS_ARCH_X86, CS_MODE_64, &handle);
|
||
|
|
return 0;
|
||
|
|
}
|