summaryrefslogtreecommitdiffhomepage
path: root/src/process/nt64/vfork.c
blob: 2bb846eb0af2ea3519ab86935467b10fa491a52d (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 the Standard MIT License; 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);