blob: b0f701c09edc184ff1dcffcaf00023d6e256f116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ISC license. */
#ifndef CHILD_SPAWN_INTERNAL_H
#define CHILD_SPAWN_INTERNAL_H
#include <skalibs/sysdeps.h>
#ifdef SKALIBS_HASPOSIXSPAWNEARLYRETURN
#include <sys/types.h>
extern pid_t child_spawn_workaround (pid_t, int const *) ; /* closes the pipe */
#endif
#endif
|