mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-06 03:53:42 +00:00
1545659817
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.
8 lines
60 B
Go
8 lines
60 B
Go
package unix
|
|
|
|
const (
|
|
R_OK = 0x4
|
|
W_OK = 0x2
|
|
X_OK = 0x1
|
|
)
|