From: Russ Cox Date: Fri, 8 May 2009 22:39:18 +0000 (-0700) Subject: fix comment X-Git-Tag: weekly.2009-11-06~1674 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cd3ab57a9c2d6088ad1deef97786d5b9f01343f6;p=gostls13.git fix comment R=r DELTA=1 (0 added, 1 deleted, 0 changed) OCL=28576 CL=28576 --- diff --git a/src/lib/os/proc.go b/src/lib/os/proc.go index 6a91306091..bae977b1f7 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) }