| author | Hiltjo Posthuma
<hiltjo@codemadness.org> 2020-02-12 22:20:25 UTC |
| committer | Hiltjo Posthuma
<hiltjo@codemadness.org> 2020-02-12 22:20:25 UTC |
| parent | 4a93974f52683114dd6c4db3bad0b7adace7c771 |
| stagit-index.c | +1 | -6 |
| stagit.c | +2 | -1 |
diff --git a/stagit-index.c b/stagit-index.c index 59a12d6..2b243ec 100644 --- a/stagit-index.c +++ b/stagit-index.c @@ -1,18 +1,13 @@ -#include <sys/stat.h> - #include <err.h> -#include <errno.h> -#include <inttypes.h> #include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include <unistd.h> #include <git2.h> -#include "compat.h" - static git_repository *repo; static const char *relpath = ""; diff --git a/stagit.c b/stagit.c index dcac016..affa318 100644 --- a/stagit.c +++ b/stagit.c @@ -3,12 +3,13 @@ #include <err.h> #include <errno.h> -#include <inttypes.h> #include <libgen.h> #include <limits.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #include <unistd.h> #include <git2.h>