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