Commit 417a581d9284021b1ce2edd4da7584b3e2379402

nulltoken 2011-07-07T13:38:47

tsort: fix wrong header inclusion

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/src/tsort.c b/src/tsort.c
index 70ed589..84f4d61 100644
--- a/src/tsort.c
+++ b/src/tsort.c
@@ -1,11 +1,5 @@
-#include <stdio.h>
-#include <string.h>
-#include <stdint.h>
-#include <stdlib.h>
-
-#ifndef GIT_WIN32
 #include <common.h>
-#endif
+
 /**
  * An array-of-pointers implementation of Python's Timsort
  * Based on code by Christopher Swenson under the MIT license