summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/wait3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/gen/wait3.c')
-rw-r--r--lib/libc/gen/wait3.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/gen/wait3.c b/lib/libc/gen/wait3.c
index c8d8f9e..21623d4 100644
--- a/lib/libc/gen/wait3.c
+++ b/lib/libc/gen/wait3.c
@@ -29,16 +29,20 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
+ *
+ * $FreeBSD$
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)wait3.c 8.1 (Berkeley) 6/4/93";
#endif /* LIBC_SCCS and not lint */
+#include "namespace.h"
#include <sys/types.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <sys/resource.h>
+#include "un-namespace.h"
pid_t
wait3(istat, options, rup)
@@ -46,5 +50,5 @@ wait3(istat, options, rup)
int options;
struct rusage *rup;
{
- return (wait4(WAIT_ANY, istat, options, rup));
+ return (_wait4(WAIT_ANY, istat, options, rup));
}
OpenPOWER on IntegriCloud