Sign in
cos
/
third_party
/
runc
/
refs/heads/release-R129
/
.
/
libcontainer
/
nsenter
/
nsenter.go
blob: f767864c3ffc0689f7dd6a358e11e49bcb6ac0a7 [
file
] [
log
] [
blame
] [
edit
]
//go:build linux && !gccgo
package nsenter
/*
#cgo CFLAGS: -Wall
extern void nsexec();
void __attribute__((constructor)) init(void) {
nsexec();
}
*/
import "C"