summaryrefslogtreecommitdiff
path: root/include/git2
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@github.com>2016-02-04 16:43:23 -0800
committerEdward Thomson <ethomson@github.com>2016-02-04 16:43:23 -0800
commit45165b120865b37901933f1c5aa72e14e1114fe9 (patch)
treefb994c34cc573ee281487392cb7f661c0ed4db65 /include/git2
parentd8f721592817cb300339c827579bc545844b276f (diff)
parentd02720d8a653bc564b84c27bfa01a6876bf5bec2 (diff)
downloadlibgit2-45165b120865b37901933f1c5aa72e14e1114fe9.tar.gz
Merge pull request #3584 from jbreeden/export_fn
Export git_stash_apply_init_options
Diffstat (limited to 'include/git2')
-rw-r--r--include/git2/stash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/stash.h b/include/git2/stash.h
index b321dc34e..733d75a7f 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);
/**