github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/runc/libcontainer/nsenter/nsenter.go (about) 1 // +build linux,!gccgo 2 3 package nsenter 4 5 /* 6 #cgo CFLAGS: -Wall 7 extern void nsexec(); 8 void __attribute__((constructor)) init(void) { 9 nsexec(); 10 } 11 */ 12 import "C"