about summary refs log tree commit diff homepage
path: root/examples/sort
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/sort
parent9b3c98850572f0729afe97ffde16d05a7e6e691b (diff)
downloadklee-5732990c805948249bdc3d43a52cfe050ad66a95.tar.gz
Use #include "klee/..." (instead of #include <klee/...>) consistently.
Diffstat (limited to 'examples/sort')
-rw-r--r--examples/sort/sort.c6
1 files changed, 3 insertions, 3 deletions
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;