about summary refs log tree commit diff homepage
path: root/examples/sort/sort.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sort/sort.c')
-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;