bsd-_setjmp.S 375 B

123456789101112131415161718
  1. /*
  2. * This file is subject to the terms and conditions of the LGPL V2.1
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2018 Kalray Inc.
  7. */
  8. #include <sysdep.h>
  9. ENTRY(_setjmp)
  10. /* Set second argument to 0 */
  11. make $r1 = 0
  12. ;;
  13. goto HIDDEN_JUMPTARGET(__sigsetjmp)
  14. ;;
  15. END(_setjmp)
  16. libc_hidden_def (_setjmp)