_exit.c 509 B

123456789101112131415161718192021222324
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * exit syscall for uClibc
  4. *
  5. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  6. *
  7. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  8. */
  9. #include <features.h>
  10. #include <errno.h>
  11. #include <unistd.h>
  12. #include <sys/types.h>
  13. #include <sys/syscall.h>
  14. /* libc_hidden_proto(_exit) */
  15. void attribute_noreturn _exit(int status)
  16. {
  17. /* The loop is added only to keep gcc happy. */
  18. while(1)
  19. INLINE_SYSCALL(exit, 1, status);
  20. }
  21. libc_hidden_def(_exit)