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