blob: dccdba425298892b1e4f2f852ffc3796595b216a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ISC license. */
#include <sys/types.h>
#include <spawn.h>
int main (void)
{
pid_t pid ;
posix_spawn_file_actions_t actions ;
posix_spawnattr_t attr ;
char *const argv[2] = { "/bin/true", 0 } ;
char *const envp[1] = { 0 } ;
posix_spawnattr_setflags(&attr, 0) ;
posix_spawn_file_actions_init(&actions) ;
return posix_spawn(&pid, argv[0], 0, 0, argv, envp) ;
}
|