From e5f365051f4c1bf6d22444600504463480b90922 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Thu, 14 Jul 2011 15:11:31 +0200 Subject: [PATCH] tag: Make git_tag_create_lightweight() accessible to bindings --- include/git2/tag.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/git2/tag.h b/include/git2/tag.h index 3c3266183..2b10d4525 100644 --- a/include/git2/tag.h +++ b/include/git2/tag.h @@ -231,7 +231,7 @@ GIT_EXTERN(int) git_tag_create_frombuffer( * A proper reference is written in the /refs/tags folder, * pointing to the provided target object */ -int git_tag_create_lightweight( +GIT_EXTERN(int) git_tag_create_lightweight( git_oid *oid, git_repository *repo, const char *tag_name,