mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-12 09:46:25 +08:00
bbeae7445a
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
13 lines
148 B
Go
13 lines
148 B
Go
// +build linux
|
|
|
|
package nsenter
|
|
|
|
/*
|
|
#cgo CFLAGS: -Wall
|
|
extern void nsexec();
|
|
void __attribute__((constructor)) init() {
|
|
nsexec();
|
|
}
|
|
*/
|
|
import "C"
|