Sign in
apache
/
infrastructure-ezmlm-idx
/
refs/heads/avoid-duplicate-headers
/
.
/
wrap_fork.c
blob: 5a1fd232ef91977516656323b8f82bac30e52fb4 [
file
]
#include
"fork.h"
#include
"messages.h"
#include
"strerr.h"
#include
"wrap.h"
#include
"die.h"
#include
"idx.h"
int
wrap_fork
(
void
)
{
int
child
;
if
((
child
=
fork
())
==
-
1
)
strerr_die2sys
(
111
,
FATAL
,
MSG
(
ERR_FORK
));
return
child
;
}