blob: 07f4d63e433fbce38f5a4934212cc570f5c82e7f [file]
// +build linux,!gccgo
package nsenter
/*
#cgo CFLAGS: -Wall
extern void nsexec();
void __attribute__((constructor)) init(void) {
nsexec();
}
*/
import "C"