]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/e1/vfork.c
Inital import
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / e1 / vfork.c
1 /*
2  * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
3  *
4  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
5  */
6
7 #include <sys/types.h>
8 #include <sys/syscall.h>
9 #include <errno.h>
10
11 #define __NR___vfork __NR_vfork
12 attribute_hidden _syscall0(pid_t, __vfork)
13 weak_alias(__vfork,vfork)
14 libc_hidden_weak(vfork)