From 0ffdfe42d169bf54ac60240822bb9032648af4c7 Mon Sep 17 00:00:00 2001 From: Miki Tebeka Date: Thu, 21 Mar 2013 20:06:25 -0700 Subject: [PATCH] cmd/cgo: fix the cgo example on multiple assignment context. Change from atoi to strtol since atoi does not set errno. R=golang-dev, minux.ma, rsc, bradfitz CC=golang-dev https://golang.org/cl/7888047 --- src/cmd/cgo/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/cgo/doc.go b/src/cmd/cgo/doc.go index 3893f7deb59..efbeae95880 100644 --- a/src/cmd/cgo/doc.go +++ b/src/cmd/cgo/doc.go @@ -70,7 +70,7 @@ assignment context to retrieve both the return value (if any) and the C errno variable as an error (use _ to skip the result value if the function returns void). For example: - n, err := C.atoi("abc") + n, err := C.sqrt(-1) _, err := C.voidFunc() In C, a function argument written as a fixed size array