Commit 45165b120865b37901933f1c5aa72e14e1114fe9

Edward Thomson 2016-02-04T16:43:23

Merge pull request #3584 from jbreeden/export_fn Export git_stash_apply_init_options

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/git2/stash.h b/include/git2/stash.h
index b321dc3..733d75a 100644
--- a/include/git2/stash.h
+++ b/include/git2/stash.h
@@ -150,7 +150,7 @@ typedef struct git_stash_apply_options {
  *        `GIT_STASH_APPLY_OPTIONS_INIT` here.
  * @return Zero on success; -1 on failure.
  */
-int git_stash_apply_init_options(
+GIT_EXTERN(int) git_stash_apply_init_options(
 	git_stash_apply_options *opts, unsigned int version);
 
 /**