]> Cypherpunks repositories - gostls13.git/commitdiff
fix comment
authorRuss Cox <rsc@golang.org>
Fri, 8 May 2009 22:39:18 +0000 (15:39 -0700)
committerRuss Cox <rsc@golang.org>
Fri, 8 May 2009 22:39:18 +0000 (15:39 -0700)
R=r
DELTA=1  (0 added, 1 deleted, 0 changed)
OCL=28576
CL=28576

src/lib/os/proc.go

index 6a91306091f0f5186eefe45c2beb7041d42f3247..bae977b1f7c465a6642d86cc34cf963d7e689402 100644 (file)
@@ -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)
 }