diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-01-17 22:20:20 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-01-19 19:59:16 -0500 |
commit | 437c5c5085ff30b4a4960b2b53d06728c788361d (patch) | |
tree | e3ed5ad7825b649ce74c03622b6b832c484b908d /newlib/libc/misc/fini.c | |
parent | 6783cceb0acdf163f8f8843f63c17e08c07b88e9 (diff) | |
download | newlib-437c5c5085ff30b4a4960b2b53d06728c788361d.zip newlib-437c5c5085ff30b4a4960b2b53d06728c788361d.tar.gz newlib-437c5c5085ff30b4a4960b2b53d06728c788361d.tar.bz2 |
newlib: internalize HAVE_INITFINI_ARRAY
This define is only used by newlib internally, so stop exporting it
as HAVE_INITFINI_ARRAY since this can conflict with defines packages
use themselves.
We don't really need to add _ to HAVE_INIT_FINI too since it isn't
exported in newlib.h, but might as well be consistent here.
We can't (easily) add this to newlib_cflags like HAVE_INIT_FINI is
because this is based on a compile-time test in the top configure,
not on plain shell code in configure.host. We'd have to replicate
the test in every subdir in order to have it passed down.
Diffstat (limited to 'newlib/libc/misc/fini.c')
-rw-r--r-- | newlib/libc/misc/fini.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/misc/fini.c b/newlib/libc/misc/fini.c index 56eed6c..5f20160 100644 --- a/newlib/libc/misc/fini.c +++ b/newlib/libc/misc/fini.c @@ -13,11 +13,11 @@ /* Handle ELF .{pre_init,init,fini}_array sections. */ #include <sys/types.h> -#ifdef HAVE_INITFINI_ARRAY +#ifdef _HAVE_INITFINI_ARRAY extern void (*__fini_array_start []) (void) __attribute__((weak)); extern void (*__fini_array_end []) (void) __attribute__((weak)); -#ifdef HAVE_INIT_FINI +#ifdef _HAVE_INIT_FINI extern void _fini (void); #endif @@ -32,7 +32,7 @@ __libc_fini_array (void) for (i = count; i > 0; i--) __fini_array_start[i-1] (); -#ifdef HAVE_INIT_FINI +#ifdef _HAVE_INIT_FINI _fini (); #endif } |