Fix documented argv and envp params for posix_spawn

This commit is contained in:
Keith Thompson 2022-01-05 13:30:16 -08:00 committed by Corinna Vinschen
parent 8c57b8b2b4
commit d4e61b73a9
1 changed files with 2 additions and 2 deletions

View File

@ -39,11 +39,11 @@ SYNOPSIS
int posix_spawn(pid_t *<[pid]>, const char *<[path]>,
const posix_spawn_file_actions_t *<[file_actions]>,
const posix_spawnattr_t *<[attrp]>,
char *const <[argv]>, char *const <[envp]>);
char *const <[argv]>[], char *const <[envp]>[]);
int posix_spawnp(pid_t *<[pid]>, const char *<[file]>,
const posix_spawn_file_actions_t *<[file_actions]>,
const posix_spawnattr_t *<[attrp]>,
char *const <[argv]>, char *const <[envp]>);
char *const <[argv]>[], char *const <[envp]>[]);
DESCRIPTION
Use <<posix_spawn>> and <<posix_spawnp>> to create a new child process