forked from OSchip/llvm-project
9 lines
92 B
Go
9 lines
92 B
Go
![]() |
package foo_cgo
|
||
|
|
||
|
// #include <stdint.h>
|
||
|
import "C"
|
||
|
|
||
|
func Answer() C.uint64_t {
|
||
|
return 42
|
||
|
}
|