Commit b6817692a6d1eb617bda96a64c66c8e02988fc12

schu 2011-08-17T12:14:47

tsort.c: fix include of common.h Signed-off-by: schu <schu-github@schulog.org>

1
2
3
4
5
6
7
8
9
10
11
diff --git a/src/tsort.c b/src/tsort.c
index bf8bff9..14b15c2 100644
--- a/src/tsort.c
+++ b/src/tsort.c
@@ -1,4 +1,5 @@
-#include <common.h>
+
+#include "common.h"
 
 /**
  * An array-of-pointers implementation of Python's Timsort