From 22d400832bced5456a0495111d6e9eea432bc5e6 Mon Sep 17 00:00:00 2001 From: lhchavez Date: Thu, 13 Feb 2020 02:52:50 +0000 Subject: [PATCH] Fix build for go 1.9 This change makes the #includes between credentials.go and remote.go consistent to avoid a build error in go 1.9. --- remote.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/remote.go b/remote.go index b4b1dd7..43ffd33 100644 --- a/remote.go +++ b/remote.go @@ -1,9 +1,11 @@ package git /* -#include #include +#include +#include + extern void _go_git_setup_callbacks(git_remote_callbacks *callbacks); */