summaryrefslogtreecommitdiff
path: root/sys/man/2
diff options
context:
space:
mode:
authorftrvxmtrx <ftrvxmtrx@gmail.com>2015-06-08 12:59:51 +0200
committerftrvxmtrx <ftrvxmtrx@gmail.com>2015-06-08 12:59:51 +0200
commite89e54d1a3bb47a6adf35082062303b0f8ccf1a5 (patch)
tree4fd475bcb5cf4e05ee111e9be544f6c1fc33d301 /sys/man/2
parenta41606b48b1a2cccd189c1fe18f6a27c6563980b (diff)
exec(2): fix prototypes
Diffstat (limited to 'sys/man/2')
-rw-r--r--sys/man/2/exec4
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;