1/*
2 * $FreeBSD$
3 */
4
5#include <unistd.h>
6#include "thr_private.h"
7
8int _vfork(void);
9
10__weak_reference(_vfork, vfork);
11
12int
13_vfork(void)
14{
15	return (fork());
16}
17