about summary refs log tree commit diff homepage
path: root/examples
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2019-07-30 12:34:27 +0100
committerMartinNowack <martin.nowack@gmail.com>2019-07-30 21:40:30 +0100
commit5732990c805948249bdc3d43a52cfe050ad66a95 (patch)
treed0869133c9a27f3478d3c08e13ff9593a32d9ea6 /examples
parent9b3c98850572f0729afe97ffde16d05a7e6e691b (diff)
downloadklee-5732990c805948249bdc3d43a52cfe050ad66a95.tar.gz
Use #include "klee/..." (instead of #include <klee/...>) consistently.
Diffstat (limited to 'examples')
-rw-r--r--examples/get_sign/get_sign.c2
-rw-r--r--examples/regexp/Regexp.c2
-rw-r--r--examples/sort/sort.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/examples/get_sign/get_sign.c b/examples/get_sign/get_sign.c
index fd2ad9f2..a379193d 100644
--- a/examples/get_sign/get_sign.c
+++ b/examples/get_sign/get_sign.c
@@ -2,7 +2,7 @@
  * First KLEE tutorial: testing a small function
  */
 
-#include <klee/klee.h>
+#include "klee/klee.h"
 
 int get_sign(int x) {
   if (x == 0)
diff --git a/examples/regexp/Regexp.c b/examples/regexp/Regexp.c
index a48ea928..18198590 100644
--- a/examples/regexp/Regexp.c
+++ b/examples/regexp/Regexp.c
@@ -7,7 +7,7 @@
  *
  */ 
 
-#include <klee/klee.h>
+#include "klee/klee.h"
 
 static int matchhere(char*,char*);
 
diff --git a/examples/sort/sort.c b/examples/sort/sort.c
index a72ccf1e..871feb3e 100644
--- a/examples/sort/sort.c
+++ b/examples/sort/sort.c
@@ -1,9 +1,9 @@
-#include <klee/klee.h>
+#include "klee/klee.h"
 
-#include <stdlib.h>
+#include <assert.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
-#include <assert.h>
 
 static void insert_ordered(int *array, unsigned nelem, int item) {
   unsigned i = 0;