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:
bde 1997-09-03 03:25:35 +00:00
parent a5b9ae2959
commit fe44e14243

@ -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