golang/go
cmd/cgo: warning: built-in function ‘free’ declared as non-function
Aperta
#32.411 aperta il 3 giu 2019
NeedsFixhelp wanted
Metriche repository
- Star
- (133.883 stelle)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
What version of Go are you using (go version)?
Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (go env)?
What did you do?
go run the following program that is using C.free as a value. (In actual code, it’s passed to a foo_set_free_fun(void (*)(void *)).) The warning is not emit when calling C.free(), nor is it when e.g. printing the address of C.getenv.
package main
// #include <stdlib.h>
import "C"
import "fmt"
func main() {
fmt.Printf("%#v\n", C.free)
}