2015-03-11 02:43:09 +08:00
|
|
|
// +build linux,!gccgo
|
2014-06-12 02:40:33 +08:00
|
|
|
|
2014-08-09 01:42:03 +08:00
|
|
|
package nsenter
|
2014-05-24 09:06:14 +08:00
|
|
|
|
|
|
|
/*
|
2015-01-26 16:33:56 +08:00
|
|
|
#cgo CFLAGS: -Wall
|
|
|
|
extern void nsexec();
|
2015-03-11 02:43:09 +08:00
|
|
|
void __attribute__((constructor)) init(void) {
|
2014-12-23 06:06:22 +08:00
|
|
|
nsexec();
|
2014-05-24 09:06:14 +08:00
|
|
|
}
|
|
|
|
*/
|
|
|
|
import "C"
|