Sign in
chromium
/
external
/
github.com
/
docker
/
runc
/
refs/heads/docker-master
/
.
/
libcontainer
/
nsenter
/
nsenter.go
blob: 07f4d63e433fbce38f5a4934212cc570f5c82e7f [
file
] [
log
] [
blame
] [
edit
]
// +build linux,!gccgo
package nsenter
/*
#cgo CFLAGS: -Wall
extern void nsexec();
void __attribute__((constructor)) init(void) {
nsexec();
}
*/
import "C"