OSDN Git Service

fork/vfork weak in libc, strong in libpthread
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / bfin / vfork.S
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 <features.h>
8 #include <asm/unistd.h>
9
10 .text
11 .global ___vfork
12 .hidden ___vfork
13 .type   ___vfork,STT_FUNC;
14 .align 4
15 ___vfork:
16         p0 = __NR_vfork;
17         excpt 0;
18         rts;
19 .size ___vfork,.-___vfork
20 //weak_alias(___vfork,_vfork)
21 //libc_hidden_def(_vfork)