diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-07-30 12:34:27 +0100 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-07-30 21:40:30 +0100 |
commit | 5732990c805948249bdc3d43a52cfe050ad66a95 (patch) | |
tree | d0869133c9a27f3478d3c08e13ff9593a32d9ea6 /runtime/POSIX/fd_init.c | |
parent | 9b3c98850572f0729afe97ffde16d05a7e6e691b (diff) | |
download | klee-5732990c805948249bdc3d43a52cfe050ad66a95.tar.gz |
Use #include "klee/..." (instead of #include <klee/...>) consistently.
Diffstat (limited to 'runtime/POSIX/fd_init.c')
-rw-r--r-- | runtime/POSIX/fd_init.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/POSIX/fd_init.c b/runtime/POSIX/fd_init.c index 327ddb53..8845fc9c 100644 --- a/runtime/POSIX/fd_init.c +++ b/runtime/POSIX/fd_init.c @@ -10,17 +10,17 @@ #define _LARGEFILE64_SOURCE #define _FILE_OFFSET_BITS 64 #include "fd.h" -#include <klee/klee.h> -#include <string.h> +#include "klee/klee.h" + +#include <assert.h> #include <stdio.h> #include <stdlib.h> -#include <assert.h> +#include <string.h> #include <sys/stat.h> #include <sys/syscall.h> #include <unistd.h> - exe_file_system_t __exe_fs; /* NOTE: It is important that these are statically initialized |