diff options
author | Lukasz Majewski <lukma@denx.de> | 2020-11-30 17:57:56 +0100 |
---|---|---|
committer | Lukasz Majewski <lukma@denx.de> | 2020-12-04 10:04:38 +0100 |
commit | 94551be9025b2b848e05fc5a9ada5f34060b4f6f (patch) | |
tree | 4139466176cd654ebe9dd42f339cca61f3a21c79 /include | |
parent | f267e1c9dd7fb8852cc32d6eafd96bbcfd5cbb2b (diff) | |
download | glibc-94551be9025b2b848e05fc5a9ada5f34060b4f6f.tar.gz |
symbols: Add defines for libanl's libanl_hidden_{def|proto}
The __gai_suspend_time64, which supports 64 bit time on ports with
__WORDSIZE == 32 && __TIMESIZE != 64, shall be exported from libanl
(the same library from which original gai_suspend is exported).
Up till now there were no defines for this library. This commit adds
them.
Diffstat (limited to 'include')
-rw-r--r-- | include/libc-symbols.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h index b8103b98bb..154a73b5e5 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -879,6 +879,14 @@ for linking") # define libutil_hidden_data_ver(local, name) #endif +#if IS_IN (libanl) +# define libanl_hidden_proto(name, attrs...) hidden_proto (name, ##attrs) +# define libanl_hidden_def(name) hidden_def (name) +#else +# define libanl_hidden_proto(name, attrs...) +# define libanl_hidden_def(name) +#endif + /* Get some dirty hacks. */ #include <symbol-hacks.h> |