Fixed synopsis. The envp arg for execle() can't be given in the prototype.

Fortunately, the man page doesn't refer to "envp" so just deleting it is OK.
This commit is contained in:
Bruce Evans 1997-09-03 03:25:35 +00:00
parent 5b4c5b0055
commit 853aa1faf3

View file

@ -50,9 +50,9 @@
.Ft int
.Fn execlp "const char *file" "const char *arg" ...
.Ft int
.Fn execle "const char *path" "const char *arg" ... "char *const envp[]"
.Fn execle "const char *path" "const char *arg" ...
.Ft int
.Fn exect "const char *path" "char *const argv[]" "char *const envp[]"
.Fn exect "const char *path" "char *const argv[]" "char *const envp[]"
.Ft int
.Fn execv "const char *path" "char *const argv[]"
.Ft int