diff options
author | nulltoken <emeric.fermas@gmail.com> | 2011-07-07 13:38:47 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-07-07 15:36:58 +0200 |
commit | 417a581d9284021b1ce2edd4da7584b3e2379402 (patch) | |
tree | 5e6079f5b4a83c2e2b9c857889ae60626de6f983 /src/tsort.c | |
parent | c1e857484e69a495afeaa85243b1ba7efb1c147c (diff) | |
download | libgit2-417a581d9284021b1ce2edd4da7584b3e2379402.tar.gz |
tsort: fix wrong header inclusion
Diffstat (limited to 'src/tsort.c')
-rw-r--r-- | src/tsort.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/tsort.c b/src/tsort.c index 70ed58901..84f4d61ea 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 |