diff options
Diffstat (limited to 'test/Feature/GetValue.c')
-rw-r--r-- | test/Feature/GetValue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Feature/GetValue.c b/test/Feature/GetValue.c index d2b046f4..c652658f 100644 --- a/test/Feature/GetValue.c +++ b/test/Feature/GetValue.c @@ -1,9 +1,9 @@ // RUN: %clang -emit-llvm -c -o %t1.bc %s // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --exit-on-error %t1.bc - -#include <stdio.h> +#include "klee/klee.h" #include <assert.h> +#include <stdio.h> int main() { int x = klee_int("x"); |