diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-01 10:55:45 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-01 10:55:45 +0000 |
commit | 49b5c516b5f5cb72ba05d5584e574b4a48cee7c1 (patch) | |
tree | 5183e4f773a46fa5c09a66c6356a08b00418da69 | |
parent | 3da5572bfa81a63ce66e41b99e9801c47a05bbbf (diff) | |
download | busybox-w32-49b5c516b5f5cb72ba05d5584e574b4a48cee7c1.tar.gz busybox-w32-49b5c516b5f5cb72ba05d5584e574b4a48cee7c1.tar.bz2 busybox-w32-49b5c516b5f5cb72ba05d5584e574b4a48cee7c1.zip |
add missing file
-rw-r--r-- | libbb/xvfork.c | 18 |
1 files changed, 18 insertions, 0 deletions
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 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Utility routines. | ||
4 | * | ||
5 | * Copyright (C) 2007 Denys Vlasenko | ||
6 | * | ||
7 | * Licensed under GPL version 2, see file LICENSE in this tarball for details. | ||
8 | */ | ||
9 | |||
10 | #include "libbb.h" | ||
11 | |||
12 | pid_t FAST_FUNC xvfork(void) | ||
13 | { | ||
14 | pid_t pid = vfork(); | ||
15 | if (pid < 0) | ||
16 | bb_perror_msg_and_die("vfork"); | ||
17 | return pid; | ||
18 | } | ||