Sign in
android
/
platform
/
external
/
libcap
/
12d7113ad4724060d980196a7a56205aff780da5
/
.
/
go
/
ok.go
blob: 509638e654b8b39f13f6515bdf8e1f7afc764683 [
file
] [
log
] [
blame
]
// Program ok exits with status zero. We use it as a chroot test.
// To avoid any confusion, it needs to be linked statically.
package main
import "os"
func main() {
os.Exit(0)
}