nsenter.go 159 B

12345678910111213
  1. // +build linux,!gccgo
  2. package nsenter
  3. /*
  4. #cgo CFLAGS: -Wall
  5. extern void nsexec();
  6. void __attribute__((constructor)) init(void) {
  7. nsexec();
  8. }
  9. */
  10. import "C"