Update copyright notices with scripts/update-copyrights
[glibc.git] / elf / static-stubs.c
bloba4edb849eb6698887a1619ef886e934febeaa1a5
1 /* Stub implementations of functions to link into statically linked
2 programs without needing libgcc_eh.
3 Copyright (C) 2012-2014 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 /* Avoid backtrace (and so _Unwind_Backtrace) dependencies from
21 sysdeps/unix/sysv/linux/libc_fatal.c. */
22 #include <sysdeps/posix/libc_fatal.c>
24 #include <stdlib.h>
25 #include <unwind.h>
27 /* These programs do not use thread cancellation, so _Unwind_Resume
28 and the personality routine are never actually called. */
30 void
31 _Unwind_Resume (struct _Unwind_Exception *exc __attribute__ ((unused)))
33 abort ();
36 _Unwind_Reason_Code
37 __gcc_personality_v0 (int version __attribute__ ((unused)),
38 _Unwind_Action actions __attribute__ ((unused)),
39 _Unwind_Exception_Class exception_class
40 __attribute__ ((unused)),
41 struct _Unwind_Exception *ue_header
42 __attribute__ ((unused)),
43 struct _Unwind_Context *context __attribute__ ((unused)))
45 abort ();