vfork.S 313 B

123456789101112131415161718
  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. #include <features.h>
  7. #include <asm/unistd.h>
  8. .text
  9. .global _vfork
  10. .type _vfork,STT_FUNC;
  11. .align 4
  12. _vfork:
  13. p0 = __NR_vfork;
  14. excpt 0;
  15. rts;
  16. .size _vfork,.-_vfork