mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
5b4c5b0055
commit
853aa1faf3
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue