diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-05-08 22:40:59 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-08 23:38:49 +0200 |
commit | 61c3ca978c586c673aec618cb94210657278dda8 (patch) | |
tree | 7011987769e65ad0e7aa8b79f648357e9cd88c30 /cgit.h | |
parent | Layout update (diff) | |
download | cgit-pink-61c3ca978c586c673aec618cb94210657278dda8.tar.gz cgit-pink-61c3ca978c586c673aec618cb94210657278dda8.zip |
Update to libgit 1.5.2-rc2
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/cgit.h b/cgit.h index 6e95673..222c9c2 100644 --- a/cgit.h +++ b/cgit.h @@ -1,10 +1,22 @@ #ifndef CGIT_H #define CGIT_H -#include "git.h" -#include <openssl/sha.h> -#include <ctype.h> -#include <sched.h> + +#include <git-compat-util.h> +#include <cache.h> +#include <grep.h> +#include <object.h> +#include <tree.h> +#include <commit.h> +#include <tag.h> +#include <diff.h> +#include <diffcore.h> +#include <refs.h> +#include <revision.h> +#include <log-tree.h> +#include <archive.h> +#include <xdiff/xdiff.h> + typedef void (*configfn)(const char *name, const char *value); |