1
0
mirror of https://github.com/rancher/os.git synced 2025-07-08 12:28:37 +00:00
os/vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter.go
2015-12-04 20:19:31 +05:00

13 lines
159 B
Go

// +build linux,!gccgo
package nsenter
/*
#cgo CFLAGS: -Wall
extern void nsexec();
void __attribute__((constructor)) init(void) {
nsexec();
}
*/
import "C"