about summary refs log tree commit diff
path: root/third_party/git/alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/alloc.h')
-rw-r--r--third_party/git/alloc.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/third_party/git/alloc.h b/third_party/git/alloc.h
deleted file mode 100644
index ed1071c11e..0000000000
--- a/third_party/git/alloc.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef ALLOC_H
-#define ALLOC_H
-
-struct alloc_state;
-struct tree;
-struct commit;
-struct tag;
-struct repository;
-
-void *alloc_blob_node(struct repository *r);
-void *alloc_tree_node(struct repository *r);
-void init_commit_node(struct repository *r, struct commit *c);
-void *alloc_commit_node(struct repository *r);
-void *alloc_tag_node(struct repository *r);
-void *alloc_object_node(struct repository *r);
-void alloc_report(struct repository *r);
-
-struct alloc_state *allocate_alloc_state(void);
-void clear_alloc_state(struct alloc_state *s);
-
-#endif