blob: b1353b6e2d78396e4297d4e0769c6a4f7d1b3479 (
plain)
1
2
3
4
5
6
7
8
|
/* ISC license. */
#include <skalibs/cspawn.h>
pid_t child_spawn0 (char const *prog, char const *const *argv, char const *const *envp)
{
return cspawn(prog, argv, envp, CSPAWN_FLAGS_SIGBLOCKNONE, 0, 0) ;
}
|