diff options
Diffstat (limited to 'test/Runtime/POSIX/Write2.c')
-rw-r--r-- | test/Runtime/POSIX/Write2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Runtime/POSIX/Write2.c b/test/Runtime/POSIX/Write2.c index 04698f21..e9eb6f6b 100644 --- a/test/Runtime/POSIX/Write2.c +++ b/test/Runtime/POSIX/Write2.c @@ -1,9 +1,9 @@ // RUN: %clang %s -emit-llvm %O0opt -c -o %t.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --exit-on-error --libc=uclibc --posix-runtime %t.bc --sym-files 1 10 --sym-stdout 2>%t.log - -#include <stdio.h> +#include "klee/klee.h" #include <assert.h> +#include <stdio.h> int main(int argc, char** argv) { const char* msg = "This will eventually overflow stdout. "; |