Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/build/feature/test-libcapstone.c
26288 views
1
// SPDX-License-Identifier: GPL-2.0
2
3
#include <capstone/capstone.h>
4
5
int main(void)
6
{
7
csh handle;
8
9
cs_open(CS_ARCH_X86, CS_MODE_64, &handle);
10
return 0;
11
}
12
13