summaryrefslogtreecommitdiffhomepage
path: root/src/process/nt32/vfork.c
blob: 4846bd9bde4a90f7cc995f5fa766b486698f9265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**************************************************************************/
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
/*  Released under GPLv2 and GPLv3; see COPYING.MMGLUE.                   */
/**************************************************************************/

#define _GNU_SOURCE
#include <unistd.h>
#include "syscall.h"
#include "libc.h"

pid_t __vfork(void)
{
	return syscall(SYS_vfork);
}

weak_alias(__vfork, vfork);