diff options
Diffstat (limited to 'src/lib/os/proc.go')
-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) } |