aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/projectatomic/buildah/unshare/unshare_cgo.go
blob: 26a0b2c20a783a81a09984ac77ef4f321e03725d (plain)
1
2
3
4
5
6
7
8
9
10
// +build linux,cgo,!gccgo

package unshare

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