Commit 4dcd45148e3555688f60caa36f29bfc48d46526d

Ozan Sener 2018-11-18T18:13:58

worktree: Expose git_worktree_add_init_options

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/git2/worktree.h b/include/git2/worktree.h
index d1b4f84..925d85a 100644
--- a/include/git2/worktree.h
+++ b/include/git2/worktree.h
@@ -101,7 +101,7 @@ typedef struct git_worktree_add_options {
  * @param version The struct version; pass `GIT_WORKTREE_ADD_OPTIONS_VERSION`.
  * @return Zero on success; -1 on failure.
  */
-int git_worktree_add_init_options(git_worktree_add_options *opts,
+GIT_EXTERN(int) git_worktree_add_init_options(git_worktree_add_options *opts,
 	unsigned int version);
 
 /**