e35f0bca34a043e755ce8d4fc6d6cc1042c40438
[mmh] / sbr / m_vfork.c
1
2 /*
3  * m_vfork.c -- Wraps vfork(), to help prevent warnings about arguments
4  *           -- and variables that might be clobbered by a vfork call
5  *           -- with gcc -Wclobbered.
6  *
7  * This code is Copyright (c) 2012, by the authors of nmh.  See the
8  * COPYRIGHT file in the root directory of the nmh distribution for
9  * complete copyright information.
10  */
11
12 #include <h/mh.h>
13
14 pid_t
15 m_vfork() {
16   return vfork();
17 }