diff options
author | Rob Pike <r@golang.org> | 2008-09-11 15:09:10 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2008-09-11 15:09:10 -0700 |
commit | d307c016075e4219e73942f3b010f1d1fbd41bc8 (patch) | |
tree | 0247ca20af5801fe5ec528edb7365fd422dbfa3f /src/syscall/file_amd64_darwin.go | |
parent | c42859e2d5b5cc53b43d6dabc27a782865230fc9 (diff) | |
download | golang-d307c016075e4219e73942f3b010f1d1fbd41bc8.tar.gz |
pull O_RDONLY etc. up to os library
R=rsc
DELTA=16 (14 added, 0 deleted, 2 changed)
OCL=15156
CL=15163
Diffstat (limited to 'src/syscall/file_amd64_darwin.go')
-rw-r--r-- | src/syscall/file_amd64_darwin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscall/file_amd64_darwin.go b/src/syscall/file_amd64_darwin.go index 95d3ce55d..6bf60b927 100644 --- a/src/syscall/file_amd64_darwin.go +++ b/src/syscall/file_amd64_darwin.go @@ -51,7 +51,7 @@ export type Stat struct { st_qspare[2] int64; } -const ( +export const ( O_RDONLY = 0x0; O_WRONLY = 0x1; O_RDWR = 0x2; |