Files
tinygo/src/internal/syscall/unix/constants.go
T
Ayke van Laethem 1545659817 internal/syscall/unix: use our own version of this package
The upstream one assumes it's running on a Unix system (which makes
sense), but this package is also used on baremetal. So replace it on
systems that need a replaced syscall package.
2025-02-27 15:45:23 +01:00

8 lines
60 B
Go

package unix
const (
R_OK = 0x4
W_OK = 0x2
X_OK = 0x1
)