Skip to content

Instantly share code, notes, and snippets.

@realazthat
Created June 26, 2011 15:04
Show Gist options
  • Save realazthat/1047676 to your computer and use it in GitHub Desktop.
Save realazthat/1047676 to your computer and use it in GitHub Desktop.
klee example
int main()
{
int a;
klee_make_symbolic(&a, sizeof(a));
if(a==5)
return 1;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment