| 123456789101112131415161718192021222324252627282930 | /* vi: set sw=4 ts=4: *//* * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */#include <sys/syscall.h>#ifndef __NR_vfork/* No vfork so use fork instead */# define __NR_vfork __NR_fork#endif.text.global __vfork.hidden __vfork.type   __vfork,@function.type   __syscall_error,@function__vfork:	li	0, __NR_vfork	sc	bnslr+	b	__syscall_error.size __vfork,.-__vforkweak_alias(__vfork,vfork)libc_hidden_def(vfork)
 |