diff options
author | Russ Cox <rsc@golang.org> | 2009-05-08 15:39:18 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-05-08 15:39:18 -0700 |
commit | fdee600cb35efb522e7976a5acd95ec3e2c6773b (patch) | |
tree | 1eb5db81f21c14d1a1bb917063067a8a9831084d | |
parent | 061dca38b2d0a81642ed454fca65702045653b59 (diff) | |
download | golang-fdee600cb35efb522e7976a5acd95ec3e2c6773b.tar.gz |
fix comment
R=r
DELTA=1 (0 added, 1 deleted, 0 changed)
OCL=28576
CL=28576
-rw-r--r-- | src/lib/os/proc.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/os/proc.go b/src/lib/os/proc.go index 6a9130609..bae977b1f 100644 --- a/src/lib/os/proc.go +++ b/src/lib/os/proc.go @@ -14,7 +14,6 @@ var Envs []string; // provided by runtime // Exit causes the current program to exit with the given status code. // Conventionally, code zero indicates success, non-zero an error. -// returning exit status n. func Exit(code int) { syscall.Syscall(syscall.SYS_EXIT, int64(code), 0, 0) } |