mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-11 14:10:34 +00:00
Make the execle() synopsis look (again) like a normal C prototype.
Also fixed the rest of ell (list) functions prototypes to include a (commented out) terminating null pointer. Pointed out by: bde Obtained from: POSIX.1-2001 Glanced at by: imp
This commit is contained in:
parent
b39dbb30f3
commit
19c2ee9e5f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116537
@ -49,11 +49,11 @@
|
||||
.In unistd.h
|
||||
.Vt extern char **environ ;
|
||||
.Ft int
|
||||
.Fn execl "const char *path" "const char *arg" ...
|
||||
.Fn execl "const char *path" "const char *arg" "... /*" "(char *)0*/"
|
||||
.Ft int
|
||||
.Fn execlp "const char *file" "const char *arg" ...
|
||||
.Fn execlp "const char *file" "const char *arg" "... /*" "(char *)0*/"
|
||||
.Ft int
|
||||
.Fn execle "const char *path" "const char *arg" ... NULL "char *const envp[]"
|
||||
.Fn execle "const char *path" "const char *arg" "... /*" "(char *)0" "char *const envp[]*/"
|
||||
.Ft int
|
||||
.Fn exect "const char *path" "char *const argv[]" "char *const envp[]"
|
||||
.Ft int
|
||||
|
Loading…
Reference in New Issue
Block a user