summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2011-07-14 06:35:36 -0700
committerVicent Martí <tanoku@gmail.com>2011-07-14 06:35:36 -0700
commit33afca47cbacd0ad6fe4115f29f3e7b58428bc70 (patch)
tree071a04c396d77a8766711fe778bbb5566bddd605
parent52e50c1a80db56b91ce3d99bd546c07b7135f735 (diff)
parente5f365051f4c1bf6d22444600504463480b90922 (diff)
downloadlibgit2-33afca47cbacd0ad6fe4115f29f3e7b58428bc70.tar.gz
Merge pull request #326 from nulltoken/ntk/fix/extern-tag-lightweight
tag: Make git_tag_create_lightweight() accessible to bindings
-rw-r--r--include/git2/tag.h2
1 files changed, 1 insertions, 1 deletions
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,