blob: 509638e654b8b39f13f6515bdf8e1f7afc764683 [file] [log] [blame]
Andrew G. Morgane20eb692020-02-23 15:50:51 -08001// 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}