diff options
| author | ftrvxmtrx <ftrvxmtrx@gmail.com> | 2015-06-08 12:59:51 +0200 |
|---|---|---|
| committer | ftrvxmtrx <ftrvxmtrx@gmail.com> | 2015-06-08 12:59:51 +0200 |
| commit | e89e54d1a3bb47a6adf35082062303b0f8ccf1a5 (patch) | |
| tree | 4fd475bcb5cf4e05ee111e9be544f6c1fc33d301 | |
| parent | a41606b48b1a2cccd189c1fe18f6a27c6563980b (diff) | |
| download | plan9front-e89e54d1a3bb47a6adf35082062303b0f8ccf1a5.tar.xz | |
exec(2): fix prototypes
| -rw-r--r-- | sys/man/2/exec | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/man/2/exec b/sys/man/2/exec index 5c5e79669..a7e016a92 100644 --- a/sys/man/2/exec +++ b/sys/man/2/exec @@ -8,10 +8,10 @@ exec, execl, _privates, _nprivates, _tos \- execute a file .PP .nf .B -void* exec(char *name, char* argv[]) +int exec(char *name, char* argv[]) .PP .B -void* execl(char *name, ...) +int execl(char *name, ...) .PP .B void **_privates; |
