summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/fork.c
blob: 899cbaf63874b99b8a48bd6bd83eb5599b02ec93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* vi: set sw=4 ts=4: */
/*
 * fork() for uClibc
 *
 * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
 *
 * GNU Library General Public License (LGPL) version 2 or later.
 */

#include "syscalls.h"
#include <unistd.h>

#ifdef __ARCH_HAS_MMU__
#ifdef __NR_fork
#define __NR___fork __NR_fork
attribute_hidden _syscall0(pid_t, __fork);
strong_alias(__fork,fork)
weak_alias(__fork,__libc_fork)
#endif
#endif