summaryrefslogtreecommitdiff
path: root/vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter.go
blob: 07f4d63e433fbce38f5a4934212cc570f5c82e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +build linux,!gccgo

package nsenter

/*
#cgo CFLAGS: -Wall
extern void nsexec();
void __attribute__((constructor)) init(void) {
	nsexec();
}
*/
import "C"