diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/framestate.c | 4 | ||||
-rw-r--r-- | sysdeps/generic/libgcc_s.h | 2 | ||||
-rw-r--r-- | sysdeps/gnu/unwind-resume.c | 4 |
3 files changed, 4 insertions, 6 deletions
diff --git a/sysdeps/generic/framestate.c b/sysdeps/generic/framestate.c index 3638bbee7f..3bad5b579b 100644 --- a/sysdeps/generic/framestate.c +++ b/sysdeps/generic/framestate.c @@ -1,5 +1,5 @@ /* __frame_state_for unwinder helper function wrapper. - Copyright (C) 2001, 2003 Free Software Foundation, Inc. + Copyright (C) 2001-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jakub@redhat.com>, 2001. @@ -23,7 +23,7 @@ #define __frame_state_for fallback_frame_state_for #include <unwind-dw2.c> #undef __frame_state_for -#include <libgcc_s.h> +#include <gnu/lib-names.h> typedef struct frame_state * (*framesf)(void *pc, struct frame_state *); struct frame_state *__frame_state_for (void *pc, diff --git a/sysdeps/generic/libgcc_s.h b/sysdeps/generic/libgcc_s.h deleted file mode 100644 index e74a1034ca..0000000000 --- a/sysdeps/generic/libgcc_s.h +++ /dev/null @@ -1,2 +0,0 @@ -/* Name of libgcc_s library provided by gcc. */ -#define LIBGCC_S_SO "libgcc_s.so.1" diff --git a/sysdeps/gnu/unwind-resume.c b/sysdeps/gnu/unwind-resume.c index 1d3e33f7d5..6afaebdaa0 100644 --- a/sysdeps/gnu/unwind-resume.c +++ b/sysdeps/gnu/unwind-resume.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003 Free Software Foundation, Inc. +/* Copyright (C) 2003-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jakub@redhat.com>. @@ -19,7 +19,7 @@ #include <dlfcn.h> #include <stdio.h> #include <unwind.h> -#include <libgcc_s.h> +#include <gnu/lib-names.h> static void (*libgcc_s_resume) (struct _Unwind_Exception *exc); static _Unwind_Reason_Code (*libgcc_s_personality) |