1
Fork 0
hermetic_cc_toolchain/test/cgo/cgo.go

20 lines
401 B
Go
Raw Normal View History

2021-06-07 22:33:34 +03:00
package main
// #define _FILE_OFFSET_BITS 64
// #include <unistd.h>
// #include <fcntl.h>
2021-06-07 22:33:34 +03:00
// #include <stdio.h>
// #include <resolv.h>
2022-01-28 15:49:24 +02:00
// char* hello() { return "hello, world"; }
// void phello() { printf("%s, your lucky numbers are %p and %p\n", hello(), fcntl, res_search); }
// #cgo LDFLAGS: -lresolv
2021-06-07 22:33:34 +03:00
import "C"
func main() {
C.phello()
2022-01-28 14:40:03 +02:00
}
2022-01-28 15:57:22 +02:00
func Chello() string {
2022-01-28 14:40:03 +02:00
return C.GoString(C.hello())
2021-06-07 22:33:34 +03:00
}