From: David du Colombier <0intro@gmail.com> Date: Wed, 21 Jan 2015 20:19:58 +0000 (+0100) Subject: include: declare getgohostos and getgohostarch on Plan 9 X-Git-Tag: go1.5beta1~1915^2~102 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7522e135a3b294c9f85b1bea901f5fe062b6f73a;p=gostls13.git include: declare getgohostos and getgohostarch on Plan 9 The function getgohostos and getgohostarch were declared in include/libc.h in CL 3042. Change-Id: Ib4ff5182cb71cc79a99663ce727fa4c28d15d7ad Reviewed-on: https://go-review.googlesource.com/3122 Reviewed-by: Ian Lance Taylor --- diff --git a/include/plan9/libc.h b/include/plan9/libc.h index fe7667b861..9a880505a4 100644 --- a/include/plan9/libc.h +++ b/include/plan9/libc.h @@ -14,6 +14,8 @@ char* getgoversion(void); char* getgoarm(void); char* getgo386(void); char* getgoextlinkenabled(void); +char* getgohostos(void); +char* getgohostarch(void); int runcmd(char**);