From 49b5c516b5f5cb72ba05d5584e574b4a48cee7c1 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 1 Jul 2008 10:55:45 +0000 Subject: [PATCH] add missing file --- libbb/xvfork.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 libbb/xvfork.c diff --git a/libbb/xvfork.c b/libbb/xvfork.c new file mode 100644 index 000000000..a74b49f48 --- /dev/null +++ b/libbb/xvfork.c @@ -0,0 +1,18 @@ +/* vi: set sw=4 ts=4: */ +/* + * Utility routines. + * + * Copyright (C) 2007 Denys Vlasenko + * + * Licensed under GPL version 2, see file LICENSE in this tarball for details. + */ + +#include "libbb.h" + +pid_t FAST_FUNC xvfork(void) +{ + pid_t pid = vfork(); + if (pid < 0) + bb_perror_msg_and_die("vfork"); + return pid; +}