diff options
author | Frank Busse <bb0xfb@gmail.com> | 2023-03-24 14:27:17 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2023-03-26 16:06:47 +0100 |
commit | 67ec44723e9ce232f067964e7e9fb26090be305d (patch) | |
tree | 1fa06d0fa085891fbabf3d2fa502751e2324fac0 /test/Feature/WithLibc.c | |
parent | 7c9ce86abd16624a6d6ee509b3dce86d191568ca (diff) | |
download | klee-67ec44723e9ce232f067964e7e9fb26090be305d.tar.gz |
tests: add some missing headers
Diffstat (limited to 'test/Feature/WithLibc.c')
-rw-r--r-- | test/Feature/WithLibc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Feature/WithLibc.c b/test/Feature/WithLibc.c index bb1c66c0..2babbe62 100644 --- a/test/Feature/WithLibc.c +++ b/test/Feature/WithLibc.c @@ -4,6 +4,11 @@ // RUN: echo "good" > %t3.good // RUN: diff %t3.log %t3.good +#include "klee/klee.h" + +#include <stdio.h> +#include <string.h> + int main() { char buf[4]; char *s = "foo"; |