mirror of
https://github.com/containers/podman.git
synced 2025-12-02 11:08:36 +08:00
11 lines
203 B
Go
11 lines
203 B
Go
// +build linux,cgo,!gccgo
|
|
|
|
package unshare
|
|
|
|
// #cgo CFLAGS: -Wall
|
|
// extern void _containers_unshare(void);
|
|
// void __attribute__((constructor)) init(void) {
|
|
// _containers_unshare();
|
|
// }
|
|
import "C"
|