xref: /aosp_15_r20/external/libcap/go/ok.go (revision 2810ac1b38eead2603277920c78344c84ddf3aff)
1// Program ok exits with status zero. We use it as a chroot test.
2// To avoid any confusion, it needs to be linked statically.
3package main
4
5import "os"
6
7func main() {
8	os.Exit(0)
9}
10