Commit 0ffdfe42 authored by Miki Tebeka's avatar Miki Tebeka Committed by Brad Fitzpatrick

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
parent c7ad7a1a
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment