123456789101112131415161718 |
- /*
- * This file is subject to the terms and conditions of the LGPL V2.1
- * License. See the file "COPYING" in the main directory of this archive
- * for more details.
- *
- * Copyright (C) 2018 Kalray Inc.
- */
- #include <sysdep.h>
- ENTRY(_setjmp)
- /* Set second argument to 0 */
- make $r1 = 0
- ;;
- goto HIDDEN_JUMPTARGET(__sigsetjmp)
- ;;
- END(_setjmp)
- libc_hidden_def (_setjmp)
|