Blame src/process/nt32/vfork.c

716654
/**************************************************************************/
716654
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
716654
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
000ff7
/*  Released under GPLv2 and GPLv3; see COPYING.MMGLUE.                   */
716654
/**************************************************************************/
716654
538005
#define _GNU_SOURCE
538005
#include <unistd.h>
538005
#include "syscall.h"
538005
#include "libc.h"
538005
538005
pid_t __vfork(void)
538005
{
538005
	return syscall(SYS_vfork);
538005
}
538005
538005
weak_alias(__vfork, vfork);