diff options
author | Rob Pike <r@golang.org> | 2008-07-26 16:22:14 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2008-07-26 16:22:14 -0700 |
commit | cf102fc1a0bc46c22f5bd1b1cc81cdd7739cf292 (patch) | |
tree | 4937d8dc87884019f50752cf5647096b0259354d /src/syscall/syscall.go | |
parent | 4fe776ac43991af527c76f921e040e76d34f9fe0 (diff) | |
download | go-cf102fc1a0bc46c22f5bd1b1cc81cdd7739cf292.tar.gz |
add fstat, stat
R=ken
OCL=13497
CL=13497
Diffstat (limited to 'src/syscall/syscall.go')
-rw-r--r-- | src/syscall/syscall.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/syscall/syscall.go b/src/syscall/syscall.go index 49d7401ed..f6277d414 100644 --- a/src/syscall/syscall.go +++ b/src/syscall/syscall.go @@ -4,8 +4,12 @@ package syscall -// for simplicity of addressing in assembler, all integers are 64 bits -// in these calling sequences. +/* + * These calls have signatures that are independent of operating system. + * + * For simplicity of addressing in assembler, all integers are 64 bits + * in these calling sequences. + */ func open(*byte, int64) (ret int64, errno int64); func close(int64) (ret int64, errno int64); |