8 lines
147 B
Go
Executable File
8 lines
147 B
Go
Executable File
//+build android darwin linux nacl netbsd
|
|
|
|
package tree
|
|
|
|
import "syscall"
|
|
|
|
const modeExecute = syscall.S_IXUSR | syscall.S_IXGRP | syscall.S_IXOTH
|