public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Adhemerval Zanella <azanella@sourceware.org>
To: glibc-cvs@sourceware.org
Subject: [glibc/azanella/clang] stdlib: Handle bcrypt internal alias for !__USE_EXTERN_INLINES
Date: Mon,  4 Apr 2022 12:59:22 +0000 (GMT)	[thread overview]
Message-ID: <20220404125922.8B96C3857C49@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3be44b18b9ff70f6ecdb82d27dc89b66f90d8194

commit 3be44b18b9ff70f6ecdb82d27dc89b66f90d8194
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:22:07 2022 -0300

    stdlib: Handle bcrypt internal alias for !__USE_EXTERN_INLINES

Diff:
---
 include/stdlib.h | 6 ++++++
 stdlib/bsearch.c | 5 +++++
 2 files changed, 11 insertions(+)

diff --git a/include/stdlib.h b/include/stdlib.h
index 6e09834909..754c8e4561 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -143,6 +143,12 @@ libc_hidden_proto (__ptsname_r)
 libc_hidden_proto (grantpt)
 libc_hidden_proto (unlockpt)
 
+__typeof (bsearch) __bsearch;
+libc_hidden_proto (__bsearch)
+#if !defined __USE_EXTERN_INLINES && IS_IN(libc)
+# define bsearch __bsearch
+#endif
+
 extern double __strtod_internal (const char *__restrict __nptr,
 				 char **__restrict __endptr, int __group)
      __THROW __nonnull ((1)) __wur;
diff --git a/stdlib/bsearch.c b/stdlib/bsearch.c
index ca643cb7f7..3311f7635a 100644
--- a/stdlib/bsearch.c
+++ b/stdlib/bsearch.c
@@ -19,4 +19,9 @@
 
 #undef  __extern_inline
 #define __extern_inline /* Empty, so we get a normal definition.  */
+#undef bsearch
+#define bsearch __bsearch
 #include <bits/stdlib-bsearch.h>
+#undef bsearch
+libc_hidden_def (__bsearch)
+weak_alias (__bsearch, bsearch)


             reply	other threads:[~2022-04-04 12:59 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-04 12:59 Adhemerval Zanella [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-06-09 21:25 Adhemerval Zanella
2022-06-09 13:21 Adhemerval Zanella
2022-06-03 14:11 Adhemerval Zanella
2022-05-13 14:24 Adhemerval Zanella
2022-05-12 19:38 Adhemerval Zanella
2022-05-10 18:29 Adhemerval Zanella
2022-04-29 14:09 Adhemerval Zanella
2022-03-31 19:11 Adhemerval Zanella

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220404125922.8B96C3857C49@sourceware.org \
    --to=azanella@sourceware.org \
    --cc=glibc-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).