waitpid.S 408 B

12345678910111213141516171819
  1. #include <sysdep-cancel.h>
  2. /*
  3. extern pid_t __waitpid_nocancel (pid_t, int *, int) attribute_hidden;
  4. */
  5. #if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt
  6. PSEUDO (__waitpid, waitpid, 3)
  7. ret
  8. PSEUDO_END(__waitpid)
  9. libc_hidden_def (__waitpid)
  10. weak_alias (__waitpid, waitpid)
  11. libc_hidden_weak (waitpid)
  12. weak_alias (__waitpid, __libc_waitpid)
  13. libc_hidden_weak (__libc_waitpid)
  14. #endif