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"