]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/libc-symbols.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / include / libc-symbols.h
CommitLineData
28f540f4
RM
1/* Support macros for making weak and strong aliases for symbols,
2 and for using symbol sets and linker warnings with GNU ld.
688903eb 3 Copyright (C) 1995-2018 Free Software Foundation, Inc.
5290baf0 4 This file is part of the GNU C Library.
28f540f4 5
5290baf0 6 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
28f540f4 10
5290baf0
UD
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
41bdb6e2 14 Lesser General Public License for more details.
28f540f4 15
41bdb6e2 16 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
28f540f4
RM
19
20#ifndef _LIBC_SYMBOLS_H
5290baf0 21#define _LIBC_SYMBOLS_H 1
28f540f4 22
7c3018f9
ZW
23/* This file is included implicitly in the compilation of every source file,
24 using -include. It includes config.h. */
9cd47470 25
7c3018f9
ZW
26/* Enable declarations of GNU extensions, since we are compiling them. */
27#define _GNU_SOURCE 1
28
29#ifdef MODULE_NAME
30
31/* Use `#if IS_IN (module)` to detect what component is being compiled. */
32#define PASTE_NAME1(a,b) a##b
33#define PASTE_NAME(a,b) PASTE_NAME1 (a,b)
34#define IN_MODULE PASTE_NAME (MODULE_, MODULE_NAME)
35#define IS_IN(lib) (IN_MODULE == MODULE_##lib)
36
37/* True if the current module is a versioned library. Versioned
38 library names culled from shlib-versions files are assigned a
39 MODULE_* value greater than MODULE_LIBS_BEGIN. */
40#define IS_IN_LIB (IN_MODULE > MODULE_LIBS_BEGIN)
41
42/* The testsuite, and some other ancillary code, should be compiled against
43 as close an approximation to the installed headers as possible.
44 Defining this symbol disables most internal-use-only declarations
45 provided by this header, and all those provided by other internal
46 wrapper headers. */
47#if IS_IN (testsuite) || defined IS_IN_build || defined __cplusplus
48# define _ISOMAC 1
49#endif
28f540f4 50
7c3018f9
ZW
51#else
52/* The generation process for a few files created very early in the
53 build (notably libc-modules.h itself) involves preprocessing this
54 header without defining MODULE_NAME. Under these conditions,
55 internal declarations (especially from config.h) must be visible,
56 but IS_IN should always evaluate as false. */
57# define IS_IN(lib) 0
58# define IS_IN_LIB 0
59# define IN_MODULE (-1)
60#endif
28f540f4 61
7c3018f9 62#ifndef _ISOMAC
28f540f4 63
92777700
RM
64/* This is defined for the compilation of all C library code. features.h
65 tests this to avoid inclusion of stubs.h while compiling the library,
66 before stubs.h has been generated. Some library code that is shared
67 with other packages also tests this symbol to see if it is being
68 compiled as part of the C library. We must define this before including
69 config.h, because it makes some definitions conditional on whether libc
70 itself is being compiled, or just some generator program. */
c709e372 71#define _LIBC 1
92777700 72
7c3018f9
ZW
73/* Some files must be compiled with optimization on. */
74#if !defined __ASSEMBLER__ && !defined __OPTIMIZE__
75# error "glibc cannot be compiled without optimization"
76#endif
77
78/* -ffast-math cannot be applied to the C library, as it alters the ABI.
79 Some test components that use -ffast-math are currently not part of
80 IS_IN (testsuite) for technical reasons, so we have a secondary override. */
81#if defined __FAST_MATH__ && !defined TEST_FAST_MATH
82# error "glibc must not be compiled with -ffast-math"
83#endif
d3669add 84
92777700 85#include <config.h>
28f540f4 86
086df229
L
87/* When PIC is defined and SHARED isn't defined, we are building PIE
88 by default. */
89#if defined PIC && !defined SHARED
90# define BUILD_PIE_DEFAULT 1
91#else
92# define BUILD_PIE_DEFAULT 0
93#endif
94
26ffd5e6
RM
95/* Define this for the benefit of portable GNU code that wants to check it.
96 Code that checks with #if will not #include <config.h> again, since we've
97 already done it (and this file is implicitly included in every compile,
98 via -include). Code that checks with #ifdef will #include <config.h>,
99 but that file should always be idempotent (i.e., it's just #define/#undef
100 and nothing else anywhere should be changing the macro state it touches),
101 so it's harmless. */
102#define HAVE_CONFIG_H 0
103
3f3dd810
SP
104/* Define these macros for the benefit of portable GNU code that wants to check
105 them. Of course, STDC_HEADERS is never false when building libc! */
26ffd5e6 106#define STDC_HEADERS 1
3f3dd810
SP
107#define HAVE_MBSTATE_T 1
108#define HAVE_MBSRTOWCS 1
a476ac4b
SP
109#define HAVE_LIBINTL_H 1
110#define HAVE_WCTYPE_H 1
111#define HAVE_ISWCTYPE 1
112#define ENABLE_NLS 1
26ffd5e6 113
0269750c 114/* The symbols in all the user (non-_) macros are C symbols. */
28f540f4 115
28f540f4 116#ifndef __SYMBOL_PREFIX
a0da5fe1 117# define __SYMBOL_PREFIX
28f540f4
RM
118#endif
119
120#ifndef C_SYMBOL_NAME
a0da5fe1 121# define C_SYMBOL_NAME(name) name
28f540f4
RM
122#endif
123
b15cb495
UD
124#ifndef ASM_LINE_SEP
125# define ASM_LINE_SEP ;
126#endif
127
428383e8
UD
128#ifndef __ASSEMBLER__
129/* GCC understands weak symbols and aliases; use its interface where
130 possible, instead of embedded assembly language. */
d02907df 131
428383e8 132/* Define ALIASNAME as a strong alias for NAME. */
c62f5cab
GM
133# define strong_alias(name, aliasname) _strong_alias(name, aliasname)
134# define _strong_alias(name, aliasname) \
428383e8
UD
135 extern __typeof (name) aliasname __attribute__ ((alias (#name)));
136
137/* This comes between the return type and function name in
138 a function definition to make that definition weak. */
139# define weak_function __attribute__ ((weak))
140# define weak_const_function __attribute__ ((weak, __const__))
141
428383e8
UD
142/* Define ALIASNAME as a weak alias for NAME.
143 If weak aliases are not available, this defines a strong alias. */
a0da5fe1
UD
144# define weak_alias(name, aliasname) _weak_alias (name, aliasname)
145# define _weak_alias(name, aliasname) \
428383e8
UD
146 extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));
147
11bf311e 148/* Same as WEAK_ALIAS, but mark symbol as hidden. */
a0da5fe1 149# define weak_hidden_alias(name, aliasname) \
11bf311e 150 _weak_hidden_alias (name, aliasname)
a0da5fe1 151# define _weak_hidden_alias(name, aliasname) \
11bf311e
UD
152 extern __typeof (name) aliasname \
153 __attribute__ ((weak, alias (#name), __visibility__ ("hidden")));
154
428383e8 155/* Declare SYMBOL as weak undefined symbol (resolved to 0 if not defined). */
a0da5fe1
UD
156# define weak_extern(symbol) _weak_extern (weak symbol)
157# define _weak_extern(expr) _Pragma (#expr)
428383e8 158
ef4f9764
FW
159/* In shared builds, the expression call_function_static_weak
160 (FUNCTION-SYMBOL, ARGUMENTS) invokes FUNCTION-SYMBOL (an
161 identifier) unconditionally, with the (potentially empty) argument
162 list ARGUMENTS. In static builds, if FUNCTION-SYMBOL has a
163 definition, the function is invoked as before; if FUNCTION-SYMBOL
164 is NULL, no call is performed. */
165# ifdef SHARED
166# define call_function_static_weak(func, ...) func (__VA_ARGS__)
167# else /* !SHARED */
168# define call_function_static_weak(func, ...) \
169 ({ \
170 extern __typeof__ (func) func weak_function; \
171 (func != NULL ? func (__VA_ARGS__) : (void)0); \
172 })
173# endif
428383e8
UD
174
175#else /* __ASSEMBLER__ */
176
177# ifdef HAVE_ASM_SET_DIRECTIVE
5ca10a0c 178# define strong_alias(original, alias) \
7b8e0d49 179 .globl C_SYMBOL_NAME (alias) ASM_LINE_SEP \
c843e065 180 .set C_SYMBOL_NAME (alias),C_SYMBOL_NAME (original)
5ca10a0c 181# define strong_data_alias(original, alias) strong_alias(original, alias)
dfd2257a 182# else
5ca10a0c 183# define strong_alias(original, alias) \
7b8e0d49 184 .globl C_SYMBOL_NAME (alias) ASM_LINE_SEP \
c843e065 185 C_SYMBOL_NAME (alias) = C_SYMBOL_NAME (original)
5ca10a0c 186# define strong_data_alias(original, alias) strong_alias(original, alias)
dfd2257a 187# endif
d02907df 188
210dd782 189# define weak_alias(original, alias) \
c843e065 190 .weak C_SYMBOL_NAME (alias) ASM_LINE_SEP \
28f540f4 191 C_SYMBOL_NAME (alias) = C_SYMBOL_NAME (original)
e6964dd4 192
210dd782 193# define weak_extern(symbol) \
af5b3bc3 194 .weak C_SYMBOL_NAME (symbol)
d02907df 195
428383e8 196#endif /* __ASSEMBLER__ */
958f803f 197
e862aada
UD
198/* Determine the return address. */
199#define RETURN_ADDRESS(nr) \
200 __builtin_extract_return_addr (__builtin_return_address (nr))
201
44c8d1a2
RM
202/* When a reference to SYMBOL is encountered, the linker will emit a
203 warning message MSG. */
fd26970f 204/* We want the .gnu.warning.SYMBOL section to be unallocated. */
75b0964b 205#define __make_section_unallocated(section_string) \
b15cb495 206 asm (".section " section_string "\n\t.previous");
fd26970f 207
b15cb495
UD
208/* Tacking on "\n\t#" to the section name makes gcc put it's bogus
209 section attributes on what looks like a comment to the assembler. */
0269750c
UD
210#ifdef HAVE_SECTION_QUOTES
211# define __sec_comment "\"\n\t#\""
212#else
213# define __sec_comment "\n\t#"
214#endif
215#define link_warning(symbol, msg) \
e26dd47f 216 __make_section_unallocated (".gnu.warning." #symbol) \
44c8d1a2 217 static const char __evoke_link_warning_##symbol[] \
6c5775c3 218 __attribute__ ((used, section (".gnu.warning." #symbol __sec_comment))) \
c877418f 219 = msg;
0269750c 220#define libc_freeres_ptr(decl) \
362f5ae2 221 __make_section_unallocated ("__libc_freeres_ptrs, \"aw\", %nobits") \
c877418f 222 decl __attribute__ ((section ("__libc_freeres_ptrs" __sec_comment)))
0269750c 223#define __libc_freeres_fn_section \
c877418f 224 __attribute__ ((section ("__libc_freeres_fn")))
0269750c 225
c877418f
RM
226#define libc_freeres_fn(name) \
227 static void name (void) __attribute_used__ __libc_freeres_fn_section; \
228 text_set_element (__libc_subfreeres, name); \
229 static void name (void)
28f540f4
RM
230
231/* A canned warning for sysdeps/stub functions. */
232#define stub_warning(name) \
561bcb80 233 __make_section_unallocated (".gnu.glibc-stub." #name) \
cd525923 234 link_warning (name, #name " is not implemented and will always fail")
5f9e57ba 235
2f7f7bc6
UD
236/* Warning for linking functions calling dlopen into static binaries. */
237#ifdef SHARED
238#define static_link_warning(name)
239#else
240#define static_link_warning(name) static_link_warning1(name)
241#define static_link_warning1(name) \
242 link_warning(name, "Using '" #name "' in statically linked applications \
243requires at runtime the shared libraries from the glibc version used \
244for linking")
245#endif
b88ac073 246
11bf311e
UD
247/* Declare SYMBOL to be TYPE (`function' or `object') of SIZE bytes
248 alias to ORIGINAL, when the assembler supports such declarations
249 (such as in ELF).
b88ac073
RM
250 This is only necessary when defining something in assembly, or playing
251 funny alias games where the size should be other than what the compiler
252 thinks it is. */
11bf311e
UD
253#define declare_symbol_alias(symbol, original, type, size) \
254 declare_symbol_alias_1 (symbol, original, type, size)
b67e9372
MP
255#ifdef __ASSEMBLER__
256# define declare_symbol_alias_1(symbol, original, type, size) \
257 strong_alias (original, symbol); \
258 .type C_SYMBOL_NAME (symbol), %##type; \
259 .size C_SYMBOL_NAME (symbol), size
260#else /* Not __ASSEMBLER__. */
261# define declare_symbol_alias_1(symbol, original, type, size) \
262 asm (".globl " __SYMBOL_PREFIX #symbol \
263 "\n\t" declare_symbol_alias_1_alias (symbol, original) \
264 "\n\t.type " __SYMBOL_PREFIX #symbol ", " \
265 "%" #type \
266 "\n\t.size " __SYMBOL_PREFIX #symbol ", " #size);
267# ifdef HAVE_ASM_SET_DIRECTIVE
268# define declare_symbol_alias_1_alias(symbol, original) \
269 ".set " __SYMBOL_PREFIX #symbol ", " __SYMBOL_PREFIX #original
270# else
271# define declare_symbol_alias_1_alias(symbol, original) \
272 __SYMBOL_PREFIX #symbol " = " __SYMBOL_PREFIX #original
273# endif /* HAVE_ASM_SET_DIRECTIVE */
274#endif /* __ASSEMBLER__ */
b88ac073
RM
275
276
5f9e57ba 277/*
28f540f4 278\f
5f9e57ba
RM
279*/
280
28f540f4
RM
281/* Symbol set support macros. */
282
28f540f4 283/* Make SYMBOL, which is in the text segment, an element of SET. */
0269750c 284#define text_set_element(set, symbol) _elf_set_element(set, symbol)
28f540f4 285/* Make SYMBOL, which is in the data segment, an element of SET. */
0269750c 286#define data_set_element(set, symbol) _elf_set_element(set, symbol)
28f540f4 287/* Make SYMBOL, which is in the bss segment, an element of SET. */
0269750c 288#define bss_set_element(set, symbol) _elf_set_element(set, symbol)
28f540f4
RM
289
290/* These are all done the same way in ELF.
291 There is a new section created for each set. */
0269750c 292#ifdef SHARED
53afa8d9
RM
293/* When building a shared library, make the set section writable,
294 because it will need to be relocated at run time anyway. */
0269750c 295# define _elf_set_element(set, symbol) \
53afa8d9 296 static const void *__elf_set_##set##_element_##symbol##__ \
6c5775c3 297 __attribute__ ((used, section (#set))) = &(symbol)
0269750c
UD
298#else
299# define _elf_set_element(set, symbol) \
28f540f4 300 static const void *const __elf_set_##set##_element_##symbol##__ \
6c5775c3 301 __attribute__ ((used, section (#set))) = &(symbol)
0269750c 302#endif
28f540f4
RM
303
304/* Define SET as a symbol set. This may be required (it is in a.out) to
305 be able to use the set's contents. */
0269750c 306#define symbol_set_define(set) symbol_set_declare(set)
28f540f4 307
20792f99
RM
308/* Declare SET for use in this module, if defined in another module.
309 In a shared library, this is always local to that shared object.
310 For static linking, the set might be wholly absent and so we use
311 weak references. */
0269750c 312#define symbol_set_declare(set) \
6f1e513d
RH
313 extern char const __start_##set[] __symbol_set_attribute; \
314 extern char const __stop_##set[] __symbol_set_attribute;
0269750c
UD
315#ifdef SHARED
316# define __symbol_set_attribute attribute_hidden
317#else
318# define __symbol_set_attribute __attribute__ ((weak))
319#endif
28f540f4
RM
320
321/* Return a pointer (void *const *) to the first element of SET. */
0269750c 322#define symbol_set_first_element(set) ((void *const *) (&__start_##set))
28f540f4
RM
323
324/* Return true iff PTR (a void *const *) has been incremented
325 past the last element in SET. */
0269750c 326#define symbol_set_end_p(set, ptr) ((ptr) >= (void *const *) &__stop_##set)
28f540f4 327
968dc26d
FW
328/* Use symbol_version_reference to specify the version a symbol
329 reference should link to. Use symbol_version or
330 default_symbol_version for the definition of a versioned symbol.
331 The difference is that the latter is a no-op in non-shared
332 builds. */
333#ifdef __ASSEMBLER__
334# define symbol_version_reference(real, name, version) \
335 .symver real, name##@##version
336#else /* !__ASSEMBLER__ */
337# define symbol_version_reference(real, name, version) \
338 __asm__ (".symver " #real "," #name "@" #version)
339#endif
340
3f2e46a4 341#ifdef SHARED
ebdf53a7 342# define symbol_version(real, name, version) \
968dc26d 343 symbol_version_reference(real, name, version)
ebdf53a7
GM
344# define default_symbol_version(real, name, version) \
345 _default_symbol_version(real, name, version)
346# ifdef __ASSEMBLER__
5ca10a0c 347# define _default_symbol_version(real, name, version) \
da2d1bc5
UD
348 .symver real, name##@##@##version
349# else
5ca10a0c 350# define _default_symbol_version(real, name, version) \
f2ea0f5b 351 __asm__ (".symver " #real "," #name "@@" #version)
da2d1bc5 352# endif
1ea89a40
UD
353#else
354# define symbol_version(real, name, version)
da2d1bc5
UD
355# define default_symbol_version(real, name, version) \
356 strong_alias(real, name)
1ea89a40
UD
357#endif
358
7c41b4a1
L
359#if defined SHARED || defined LIBC_NONSHARED \
360 || (BUILD_PIE_DEFAULT && IS_IN (libc))
e6caf4e1
UD
361# define attribute_hidden __attribute__ ((visibility ("hidden")))
362#else
363# define attribute_hidden
364#endif
365
3ce1f295 366#define attribute_tls_model_ie __attribute__ ((tls_model ("initial-exec")))
9b21e6bc 367
11bf311e 368#define attribute_relro __attribute__ ((section (".data.rel.ro")))
392a6b52 369
de659123
NA
370
371/* Used to disable stack protection in sensitive places, like ifunc
372 resolvers and early static TLS init. */
373#ifdef HAVE_CC_NO_STACK_PROTECTOR
374# define inhibit_stack_protector \
375 __attribute__ ((__optimize__ ("-fno-stack-protector")))
376#else
377# define inhibit_stack_protector
378#endif
379
37ba7d66
UD
380/* The following macros are used for PLT bypassing within libc.so
381 (and if needed other libraries similarly).
382 First of all, you need to have the function prototyped somewhere,
383 say in foo/foo.h:
384
385 int foo (int __bar);
386
387 If calls to foo within libc.so should always go to foo defined in libc.so,
388 then in include/foo.h you add:
389
390 libc_hidden_proto (foo)
391
392 line and after the foo function definition:
393
394 int foo (int __bar)
395 {
396 return __bar;
397 }
398 libc_hidden_def (foo)
399
400 or
401
402 int foo (int __bar)
403 {
404 return __bar;
405 }
406 libc_hidden_weak (foo)
407
5536dfcb 408 Similarly for global data. If references to foo within libc.so should
c843e065
RM
409 always go to foo defined in libc.so, then in include/foo.h you add:
410
411 libc_hidden_proto (foo)
412
413 line and after foo's definition:
414
415 int foo = INITIAL_FOO_VALUE;
416 libc_hidden_data_def (foo)
417
418 or
419
420 int foo = INITIAL_FOO_VALUE;
421 libc_hidden_data_weak (foo)
422
5536dfcb 423 If foo is normally just an alias (strong or weak) to some other function,
37ba7d66
UD
424 you should use the normal strong_alias first, then add libc_hidden_def
425 or libc_hidden_weak:
426
427 int baz (int __bar)
428 {
429 return __bar;
430 }
431 strong_alias (baz, foo)
432 libc_hidden_weak (foo)
433
434 If the function should be internal to multiple objects, say ld.so and
435 libc.so, the best way is to use:
436
9cd47470 437 #if IS_IN (libc) || IS_IN (rtld)
37ba7d66
UD
438 hidden_proto (foo)
439 #endif
440
441 in include/foo.h and the normal macros at all function definitions
442 depending on what DSO they belong to.
443
444 If versioned_symbol macro is used to define foo,
445 libc_hidden_ver macro should be used, as in:
446
447 int __real_foo (int __bar)
448 {
449 return __bar;
450 }
451 versioned_symbol (libc, __real_foo, foo, GLIBC_2_1);
452 libc_hidden_ver (__real_foo, foo) */
453
3f2e46a4 454#if defined SHARED && !defined NO_HIDDEN
37ba7d66 455# ifndef __ASSEMBLER__
11bf311e 456# define __hidden_proto_hiddenattr(attrs...) \
81cb0d82 457 __attribute__ ((visibility ("hidden"), ##attrs))
81cb0d82 458# define hidden_proto(name, attrs...) \
699df45b
JM
459 __hidden_proto (name, , __GI_##name, ##attrs)
460# define hidden_tls_proto(name, attrs...) \
461 __hidden_proto (name, __thread, __GI_##name, ##attrs)
462# define __hidden_proto(name, thread, internal, attrs...) \
463 extern thread __typeof (name) name __asm__ (__hidden_asmname (#internal)) \
81cb0d82 464 __hidden_proto_hiddenattr (attrs);
37ba7d66
UD
465# define __hidden_asmname(name) \
466 __hidden_asmname1 (__USER_LABEL_PREFIX__, name)
467# define __hidden_asmname1(prefix, name) __hidden_asmname2(prefix, name)
468# define __hidden_asmname2(prefix, name) #prefix name
61995d3e
RM
469# define __hidden_ver1(local, internal, name) \
470 extern __typeof (name) __EI_##name __asm__(__hidden_asmname (#internal)); \
471 extern __typeof (name) __EI_##name \
472 __attribute__((alias (__hidden_asmname (#local))))
473# define hidden_ver(local, name) __hidden_ver1(local, __GI_##name, name);
474# define hidden_data_ver(local, name) hidden_ver(local, name)
475# define hidden_def(name) __hidden_ver1(__GI_##name, name, name);
476# define hidden_data_def(name) hidden_def(name)
477# define hidden_weak(name) \
478 __hidden_ver1(__GI_##name, name, name) __attribute__((weak));
479# define hidden_data_weak(name) hidden_weak(name)
7b57bfe5
UD
480# define hidden_nolink(name, lib, version) \
481 __hidden_nolink1 (__GI_##name, __EI_##name, name, VERSION_##lib##_##version)
482# define __hidden_nolink1(local, internal, name, version) \
483 __hidden_nolink2 (local, internal, name, version)
484# define __hidden_nolink2(local, internal, name, version) \
485 extern __typeof (name) internal __attribute__ ((alias (#local))); \
486 __hidden_nolink3 (local, internal, #name "@" #version)
487# define __hidden_nolink3(local, internal, vername) \
488 __asm__ (".symver " #internal ", " vername);
37ba7d66
UD
489# else
490/* For assembly, we need to do the opposite of what we do in C:
491 in assembly gcc __REDIRECT stuff is not in place, so functions
492 are defined by its normal name and we need to create the
493 __GI_* alias to it, in C __REDIRECT causes the function definition
494 to use __GI_* name and we need to add alias to the real name.
4547dee3
RM
495 There is no reason to use hidden_weak over hidden_def in assembly,
496 but we provide it for consistency with the C usage.
497 hidden_proto doesn't make sense for assembly but the equivalent
dce8f2b6 498 is to call via the HIDDEN_JUMPTARGET macro instead of JUMPTARGET. */
4547dee3
RM
499# define hidden_def(name) strong_alias (name, __GI_##name)
500# define hidden_weak(name) hidden_def (name)
37ba7d66 501# define hidden_ver(local, name) strong_alias (local, __GI_##name)
c843e065
RM
502# define hidden_data_def(name) strong_data_alias (name, __GI_##name)
503# define hidden_data_weak(name) hidden_data_def (name)
504# define hidden_data_ver(local, name) strong_data_alias (local, __GI_##name)
5ca10a0c 505# define HIDDEN_JUMPTARGET(name) __GI_##name
37ba7d66
UD
506# endif
507#else
4547dee3 508# ifndef __ASSEMBLER__
8d2ec553 509# if !defined SHARED && IS_IN (libc) && !defined LIBC_NONSHARED \
ee417882 510 && (!defined PIC || !defined NO_HIDDEN_EXTERN_FUNC_IN_PIE) \
8d2ec553
L
511 && !defined NO_HIDDEN
512# define __hidden_proto_hiddenattr(attrs...) \
513 __attribute__ ((visibility ("hidden"), ##attrs))
514# define hidden_proto(name, attrs...) \
515 __hidden_proto (name, , name, ##attrs)
516# define hidden_tls_proto(name, attrs...) \
517 __hidden_proto (name, __thread, name, ##attrs)
518# define __hidden_proto(name, thread, internal, attrs...) \
519 extern thread __typeof (name) name __hidden_proto_hiddenattr (attrs);
520# else
521# define hidden_proto(name, attrs...)
522# define hidden_tls_proto(name, attrs...)
523# endif
4547dee3
RM
524# else
525# define HIDDEN_JUMPTARGET(name) JUMPTARGET(name)
526# endif /* Not __ASSEMBLER__ */
527# define hidden_weak(name)
37ba7d66
UD
528# define hidden_def(name)
529# define hidden_ver(local, name)
c843e065
RM
530# define hidden_data_weak(name)
531# define hidden_data_def(name)
532# define hidden_data_ver(local, name)
1792c087 533# define hidden_nolink(name, lib, version)
37ba7d66
UD
534#endif
535
4f41c682 536#if IS_IN (libc)
81cb0d82 537# define libc_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b 538# define libc_hidden_tls_proto(name, attrs...) hidden_tls_proto (name, ##attrs)
37ba7d66
UD
539# define libc_hidden_def(name) hidden_def (name)
540# define libc_hidden_weak(name) hidden_weak (name)
021db4be
AJ
541# ifdef LINK_OBSOLETE_RPC
542 /* libc_hidden_nolink_sunrpc should only get used in sunrpc code. */
543# define libc_hidden_nolink_sunrpc(name, version) hidden_def (name)
544# else
545# define libc_hidden_nolink_sunrpc(name, version) hidden_nolink (name, libc, version)
546# endif
37ba7d66 547# define libc_hidden_ver(local, name) hidden_ver (local, name)
c843e065
RM
548# define libc_hidden_data_def(name) hidden_data_def (name)
549# define libc_hidden_data_weak(name) hidden_data_weak (name)
550# define libc_hidden_data_ver(local, name) hidden_data_ver (local, name)
37ba7d66 551#else
81cb0d82 552# define libc_hidden_proto(name, attrs...)
699df45b 553# define libc_hidden_tls_proto(name, attrs...)
37ba7d66
UD
554# define libc_hidden_def(name)
555# define libc_hidden_weak(name)
556# define libc_hidden_ver(local, name)
c843e065
RM
557# define libc_hidden_data_def(name)
558# define libc_hidden_data_weak(name)
559# define libc_hidden_data_ver(local, name)
37ba7d66
UD
560#endif
561
3d1870fa 562#if IS_IN (rtld) && !defined NO_RTLD_HIDDEN
81cb0d82 563# define rtld_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b 564# define rtld_hidden_tls_proto(name, attrs...) hidden_tls_proto (name, ##attrs)
37ba7d66
UD
565# define rtld_hidden_def(name) hidden_def (name)
566# define rtld_hidden_weak(name) hidden_weak (name)
567# define rtld_hidden_ver(local, name) hidden_ver (local, name)
c843e065
RM
568# define rtld_hidden_data_def(name) hidden_data_def (name)
569# define rtld_hidden_data_weak(name) hidden_data_weak (name)
570# define rtld_hidden_data_ver(local, name) hidden_data_ver (local, name)
37ba7d66 571#else
81cb0d82 572# define rtld_hidden_proto(name, attrs...)
699df45b 573# define rtld_hidden_tls_proto(name, attrs...)
37ba7d66
UD
574# define rtld_hidden_def(name)
575# define rtld_hidden_weak(name)
576# define rtld_hidden_ver(local, name)
c843e065
RM
577# define rtld_hidden_data_def(name)
578# define rtld_hidden_data_weak(name)
579# define rtld_hidden_data_ver(local, name)
37ba7d66
UD
580#endif
581
9cd47470 582#if IS_IN (libm)
81cb0d82 583# define libm_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b 584# define libm_hidden_tls_proto(name, attrs...) hidden_tls_proto (name, ##attrs)
37ba7d66
UD
585# define libm_hidden_def(name) hidden_def (name)
586# define libm_hidden_weak(name) hidden_weak (name)
587# define libm_hidden_ver(local, name) hidden_ver (local, name)
c843e065
RM
588# define libm_hidden_data_def(name) hidden_data_def (name)
589# define libm_hidden_data_weak(name) hidden_data_weak (name)
590# define libm_hidden_data_ver(local, name) hidden_data_ver (local, name)
37ba7d66 591#else
81cb0d82 592# define libm_hidden_proto(name, attrs...)
699df45b 593# define libm_hidden_tls_proto(name, attrs...)
37ba7d66
UD
594# define libm_hidden_def(name)
595# define libm_hidden_weak(name)
596# define libm_hidden_ver(local, name)
c843e065
RM
597# define libm_hidden_data_def(name)
598# define libm_hidden_data_weak(name)
599# define libm_hidden_data_ver(local, name)
37ba7d66
UD
600#endif
601
829a679f
AS
602#if IS_IN (libmvec)
603# define libmvec_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
604# define libmvec_hidden_tls_proto(name, attrs...) hidden_tls_proto (name, ##attrs)
605# define libmvec_hidden_def(name) hidden_def (name)
606# define libmvec_hidden_weak(name) hidden_weak (name)
607# define libmvec_hidden_ver(local, name) hidden_ver (local, name)
608# define libmvec_hidden_data_def(name) hidden_data_def (name)
609# define libmvec_hidden_data_weak(name) hidden_data_weak (name)
610# define libmvec_hidden_data_ver(local, name) hidden_data_ver (local, name)
611#else
612# define libmvec_hidden_proto(name, attrs...)
613# define libmvec_hidden_tls_proto(name, attrs...)
614# define libmvec_hidden_def(name)
615# define libmvec_hidden_weak(name)
616# define libmvec_hidden_ver(local, name)
617# define libmvec_hidden_data_def(name)
618# define libmvec_hidden_data_weak(name)
619# define libmvec_hidden_data_ver(local, name)
620#endif
621
9cd47470 622#if IS_IN (libresolv)
6f9d8e68 623# define libresolv_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b
JM
624# define libresolv_hidden_tls_proto(name, attrs...) \
625 hidden_tls_proto (name, ##attrs)
6f9d8e68
UD
626# define libresolv_hidden_def(name) hidden_def (name)
627# define libresolv_hidden_weak(name) hidden_weak (name)
628# define libresolv_hidden_ver(local, name) hidden_ver (local, name)
629# define libresolv_hidden_data_def(name) hidden_data_def (name)
630# define libresolv_hidden_data_weak(name) hidden_data_weak (name)
631# define libresolv_hidden_data_ver(local, name) hidden_data_ver (local, name)
632#else
633# define libresolv_hidden_proto(name, attrs...)
699df45b 634# define libresolv_hidden_tls_proto(name, attrs...)
6f9d8e68
UD
635# define libresolv_hidden_def(name)
636# define libresolv_hidden_weak(name)
637# define libresolv_hidden_ver(local, name)
638# define libresolv_hidden_data_def(name)
639# define libresolv_hidden_data_weak(name)
640# define libresolv_hidden_data_ver(local, name)
641#endif
642
9cd47470 643#if IS_IN (librt)
a9564ae9 644# define librt_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b
JM
645# define librt_hidden_tls_proto(name, attrs...) \
646 hidden_tls_proto (name, ##attrs)
a9564ae9
UD
647# define librt_hidden_def(name) hidden_def (name)
648# define librt_hidden_weak(name) hidden_weak (name)
649# define librt_hidden_ver(local, name) hidden_ver (local, name)
650# define librt_hidden_data_def(name) hidden_data_def (name)
651# define librt_hidden_data_weak(name) hidden_data_weak (name)
652# define librt_hidden_data_ver(local, name) hidden_data_ver (local, name)
653#else
654# define librt_hidden_proto(name, attrs...)
699df45b 655# define librt_hidden_tls_proto(name, attrs...)
a9564ae9
UD
656# define librt_hidden_def(name)
657# define librt_hidden_weak(name)
658# define librt_hidden_ver(local, name)
659# define librt_hidden_data_def(name)
660# define librt_hidden_data_weak(name)
661# define librt_hidden_data_ver(local, name)
662#endif
663
9cd47470 664#if IS_IN (libdl)
5f21997b 665# define libdl_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b
JM
666# define libdl_hidden_tls_proto(name, attrs...) \
667 hidden_tls_proto (name, ##attrs)
5f21997b
UD
668# define libdl_hidden_def(name) hidden_def (name)
669# define libdl_hidden_weak(name) hidden_weak (name)
670# define libdl_hidden_ver(local, name) hidden_ver (local, name)
671# define libdl_hidden_data_def(name) hidden_data_def (name)
672# define libdl_hidden_data_weak(name) hidden_data_weak (name)
673# define libdl_hidden_data_ver(local, name) hidden_data_ver (local, name)
674#else
675# define libdl_hidden_proto(name, attrs...)
699df45b 676# define libdl_hidden_tls_proto(name, attrs...)
5f21997b
UD
677# define libdl_hidden_def(name)
678# define libdl_hidden_weak(name)
679# define libdl_hidden_ver(local, name)
680# define libdl_hidden_data_def(name)
681# define libdl_hidden_data_weak(name)
682# define libdl_hidden_data_ver(local, name)
683#endif
684
9cd47470 685#if IS_IN (libnss_files)
44843eee 686# define libnss_files_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b
JM
687# define libnss_files_hidden_tls_proto(name, attrs...) \
688 hidden_tls_proto (name, ##attrs)
44843eee
UD
689# define libnss_files_hidden_def(name) hidden_def (name)
690# define libnss_files_hidden_weak(name) hidden_weak (name)
691# define libnss_files_hidden_ver(local, name) hidden_ver (local, name)
692# define libnss_files_hidden_data_def(name) hidden_data_def (name)
693# define libnss_files_hidden_data_weak(name) hidden_data_weak (name)
694# define libnss_files_hidden_data_ver(local, name) hidden_data_ver(local, name)
695#else
696# define libnss_files_hidden_proto(name, attrs...)
699df45b 697# define libnss_files_hidden_tls_proto(name, attrs...)
44843eee
UD
698# define libnss_files_hidden_def(name)
699# define libnss_files_hidden_weak(name)
700# define libnss_files_hidden_ver(local, name)
701# define libnss_files_hidden_data_def(name)
702# define libnss_files_hidden_data_weak(name)
703# define libnss_files_hidden_data_ver(local, name)
704#endif
705
9cd47470 706#if IS_IN (libnsl)
1d5cee23 707# define libnsl_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b
JM
708# define libnsl_hidden_tls_proto(name, attrs...) \
709 hidden_tls_proto (name, ##attrs)
1e4d83f6
TK
710# ifdef LINK_OBSOLETE_NSL
711 /* libnsl_hidden_nolink should only get used in libnsl code. */
712# define libnsl_hidden_nolink_def(name, version) libnsl_hidden_def (name)
713# else
714# define libnsl_hidden_nolink_def(name, version) hidden_nolink (name, libnsl, version)
715# endif
1d5cee23
UD
716# define libnsl_hidden_def(name) hidden_def (name)
717# define libnsl_hidden_weak(name) hidden_weak (name)
718# define libnsl_hidden_ver(local, name) hidden_ver (local, name)
719# define libnsl_hidden_data_def(name) hidden_data_def (name)
720# define libnsl_hidden_data_weak(name) hidden_data_weak (name)
721# define libnsl_hidden_data_ver(local, name) hidden_data_ver (local, name)
722#else
723# define libnsl_hidden_proto(name, attrs...)
699df45b 724# define libnsl_hidden_tls_proto(name, attrs...)
1d5cee23
UD
725# define libnsl_hidden_def(name)
726# define libnsl_hidden_weak(name)
727# define libnsl_hidden_ver(local, name)
728# define libnsl_hidden_data_def(name)
729# define libnsl_hidden_data_weak(name)
730# define libnsl_hidden_data_ver(local, name)
731#endif
732
9cd47470 733#if IS_IN (libnss_nisplus)
b31b32b3 734# define libnss_nisplus_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b
JM
735# define libnss_nisplus_hidden_tls_proto(name, attrs...) \
736 hidden_tls_proto (name, ##attrs)
b31b32b3
UD
737# define libnss_nisplus_hidden_def(name) hidden_def (name)
738# define libnss_nisplus_hidden_weak(name) hidden_weak (name)
739# define libnss_nisplus_hidden_ver(local, name) hidden_ver (local, name)
740# define libnss_nisplus_hidden_data_def(name) hidden_data_def (name)
741# define libnss_nisplus_hidden_data_weak(name) hidden_data_weak (name)
742# define libnss_nisplus_hidden_data_ver(local, name) hidden_data_ver (local, name)
743#else
744# define libnss_nisplus_hidden_proto(name, attrs...)
699df45b 745# define libnss_nisplus_hidden_tls_proto(name, attrs...)
b31b32b3
UD
746# define libnss_nisplus_hidden_def(name)
747# define libnss_nisplus_hidden_weak(name)
748# define libnss_nisplus_hidden_ver(local, name)
749# define libnss_nisplus_hidden_data_def(name)
750# define libnss_nisplus_hidden_data_weak(name)
751# define libnss_nisplus_hidden_data_ver(local, name)
752#endif
753
3ce1f295
UD
754#define libc_hidden_builtin_proto(name, attrs...) libc_hidden_proto (name, ##attrs)
755#define libc_hidden_builtin_def(name) libc_hidden_def (name)
756#define libc_hidden_builtin_weak(name) libc_hidden_weak (name)
757#define libc_hidden_builtin_ver(local, name) libc_hidden_ver (local, name)
758#ifdef __ASSEMBLER__
759# define HIDDEN_BUILTIN_JUMPTARGET(name) HIDDEN_JUMPTARGET(name)
85dd1003
UD
760#endif
761
9cd47470 762#if IS_IN (libutil)
b31b32b3 763# define libutil_hidden_proto(name, attrs...) hidden_proto (name, ##attrs)
699df45b
JM
764# define libutil_hidden_tls_proto(name, attrs...) \
765 hidden_tls_proto (name, ##attrs)
b31b32b3
UD
766# define libutil_hidden_def(name) hidden_def (name)
767# define libutil_hidden_weak(name) hidden_weak (name)
768# define libutil_hidden_ver(local, name) hidden_ver (local, name)
769# define libutil_hidden_data_def(name) hidden_data_def (name)
770# define libutil_hidden_data_weak(name) hidden_data_weak (name)
771# define libutil_hidden_data_ver(local, name) hidden_data_ver (local, name)
772#else
773# define libutil_hidden_proto(name, attrs...)
699df45b 774# define libutil_hidden_tls_proto(name, attrs...)
b31b32b3
UD
775# define libutil_hidden_def(name)
776# define libutil_hidden_weak(name)
777# define libutil_hidden_ver(local, name)
778# define libutil_hidden_data_def(name)
779# define libutil_hidden_data_weak(name)
780# define libutil_hidden_data_ver(local, name)
781#endif
782
b30542fb
UD
783/* Get some dirty hacks. */
784#include <symbol-hacks.h>
785
4a381a81
UD
786/* Move compatibility symbols out of the way by placing them all in a
787 special section. */
d3a4a571
UD
788#ifndef __ASSEMBLER__
789# define attribute_compat_text_section \
4a381a81 790 __attribute__ ((section (".text.compat")))
d3a4a571 791# define attribute_compat_data_section \
4a381a81 792 __attribute__ ((section (".data.compat")))
d3a4a571
UD
793#else
794# define compat_text_section .section ".text.compat", "ax";
795# define compat_data_section .section ".data.compat", "aw";
796#endif
4a381a81 797
00980d84
SL
798/* Helper / base macros for indirect function symbols. */
799#define __ifunc_resolver(type_name, name, expr, arg, init, classifier) \
ee4e992e
MS
800 classifier inhibit_stack_protector \
801 __typeof (type_name) *name##_ifunc (arg) \
425ce2ed 802 { \
00980d84
SL
803 init (); \
804 __typeof (type_name) *res = expr; \
425ce2ed 805 return res; \
00980d84
SL
806 }
807
808#ifdef HAVE_GCC_IFUNC
809# define __ifunc(type_name, name, expr, arg, init) \
810 extern __typeof (type_name) name __attribute__ \
811 ((ifunc (#name "_ifunc"))); \
812 __ifunc_resolver (type_name, name, expr, arg, init, static)
813
814# define __ifunc_hidden(type_name, name, expr, arg, init) \
815 __ifunc (type_name, name, expr, arg, init)
816#else
817/* Gcc does not support __attribute__ ((ifunc (...))). Use the old behaviour
818 as fallback. But keep in mind that the debug information for the ifunc
819 resolver functions is not correct. It contains the ifunc'ed function as
820 DW_AT_linkage_name. E.g. lldb uses this field and an inferior function
821 call of the ifunc'ed function will fail due to "no matching function for
822 call to ..." because the ifunc'ed function and the resolver function have
823 different signatures. (Gcc support is disabled at least on a ppc64le
824 Ubuntu 14.04 system.) */
825
826# define __ifunc(type_name, name, expr, arg, init) \
827 extern __typeof (type_name) name; \
b513da7e 828 __typeof (type_name) *name##_ifunc (arg) __asm__ (#name); \
00980d84
SL
829 __ifunc_resolver (type_name, name, expr, arg, init,) \
830 __asm__ (".type " #name ", %gnu_indirect_function");
831
832# define __ifunc_hidden(type_name, name, expr, arg, init) \
833 extern __typeof (type_name) __libc_##name; \
834 __ifunc (type_name, __libc_##name, expr, arg, init) \
835 strong_alias (__libc_##name, name);
836#endif /* !HAVE_GCC_IFUNC */
837
838/* The following macros are used for indirect function symbols in libc.so.
839 First of all, you need to have the function prototyped somewhere,
840 say in foo.h:
841
842 int foo (int __bar);
843
844 If you have an implementation for foo which e.g. uses a special hardware
845 feature which isn't available on all machines where this libc.so will be
846 used but decideable if available at runtime e.g. via hwcaps, you can provide
847 two or multiple implementations of foo:
848
849 int __foo_default (int __bar)
850 {
851 return __bar;
852 }
853
854 int __foo_special (int __bar)
855 {
856 return __bar;
857 }
858
859 If your function foo has no libc_hidden_proto (foo) defined for PLT
860 bypassing, you can use:
861
862 #define INIT_ARCH() unsigned long int hwcap = __GLRO(dl_hwcap);
863
864 libc_ifunc (foo, (hwcap & HWCAP_SPECIAL) ? __foo_special : __foo_default);
865
866 This will define a resolver function for foo which returns __foo_special or
867 __foo_default depending on your specified expression. Please note that you
868 have to define a macro function INIT_ARCH before using libc_ifunc macro as
869 it is called by the resolver function before evaluating the specified
870 expression. In this example it is used to prepare the hwcap variable.
871 The resolver function is assigned to an ifunc'ed symbol foo. Calls to foo
872 from inside or outside of libc.so will be indirected by a PLT call.
873
874 If your function foo has a libc_hidden_proto (foo) defined for PLT bypassing
875 and calls to foo within libc.so should always go to one specific
876 implementation of foo e.g. __foo_default then you have to add:
877
878 __hidden_ver1 (__foo_default, __GI_foo, __foo_default);
879
880 or a tweaked definition of libc_hidden_def macro after the __foo_default
881 function definition. Calls to foo within libc.so will always go directly to
882 __foo_default. Calls to foo from outside libc.so will be indirected by a
883 PLT call to ifunc'ed symbol foo which you have to define in a separate
884 compile unit:
885
886 #define foo __redirect_foo
887 #include <foo.h>
888 #undef foo
889
890 extern __typeof (__redirect_foo) __foo_default attribute_hidden;
891 extern __typeof (__redirect_foo) __foo_special attribute_hidden;
892
893 libc_ifunc_redirected (__redirect_foo, foo,
894 (hwcap & HWCAP_SPECIAL)
895 ? __foo_special
896 : __foo_default);
897
898 This will define the ifunc'ed symbol foo like above. The redirection of foo
899 in header file is needed to omit an additional defintion of __GI_foo which
900 would end in a linker error while linking libc.so. You have to specify
901 __redirect_foo as first parameter which is used within libc_ifunc_redirected
902 macro in conjunction with typeof to define the ifunc'ed symbol foo.
903
904 If your function foo has a libc_hidden_proto (foo) defined and calls to foo
905 within or from outside libc.so should go via ifunc'ed symbol, then you have
906 to use:
907
908 libc_ifunc_hidden (foo, foo,
909 (hwcap & HWCAP_SPECIAL)
910 ? __foo_special
911 : __foo_default);
912 libc_hidden_def (foo)
913
914 The first parameter foo of libc_ifunc_hidden macro is used in the same way
915 as for libc_ifunc_redirected macro. */
916
917#define libc_ifunc(name, expr) __ifunc (name, name, expr, void, INIT_ARCH)
918
919#define libc_ifunc_redirected(redirected_name, name, expr) \
920 __ifunc (redirected_name, name, expr, void, INIT_ARCH)
921
922#define libc_ifunc_hidden(redirected_name, name, expr) \
923 __ifunc_hidden (redirected_name, name, expr, void, INIT_ARCH)
425ce2ed 924
9a1d2d45
UD
925/* The body of the function is supposed to use __get_cpu_features
926 which will, if necessary, initialize the data first. */
00980d84
SL
927#define libm_ifunc_init()
928#define libm_ifunc(name, expr) \
929 __ifunc (name, name, expr, void, libm_ifunc_init)
9a1d2d45 930
85c2e611
AZ
931/* Add the compiler optimization to inhibit loop transformation to library
932 calls. This is used to avoid recursive calls in memset and memmove
933 default implementations. */
934#ifdef HAVE_CC_INHIBIT_LOOP_TO_LIBCALL
935# define inhibit_loop_to_libcall \
936 __attribute__ ((__optimize__ ("-fno-tree-loop-distribute-patterns")))
937#else
938# define inhibit_loop_to_libcall
939#endif
0f3be872
ZW
940\f
941/* These macros facilitate sharing source files with gnulib.
942
943 They are here instead of sys/cdefs.h because they should not be
944 used in public header files.
945
946 Their definitions should be kept consistent with the definitions in
947 gnulib-common.m4, but it is not necessary to cater to old non-GCC
948 compilers, since they will only be used while building glibc itself.
949 (Note that _GNUC_PREREQ cannot be used in this file.) */
950
951/* Define as a marker that can be attached to declarations that might not
952 be used. This helps to reduce warnings, such as from
953 GCC -Wunused-parameter. */
954#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
955# define _GL_UNUSED __attribute__ ((__unused__))
956#else
957# define _GL_UNUSED
958#endif
959
960/* gcc supports the "unused" attribute on possibly unused labels, and
961 g++ has since version 4.5. Note to support C++ as well as C,
962 _GL_UNUSED_LABEL should be used with a trailing ; */
963#if !defined __cplusplus || __GNUC__ > 4 \
964 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
965# define _GL_UNUSED_LABEL _GL_UNUSED
966#else
967# define _GL_UNUSED_LABEL
968#endif
969
970/* The __pure__ attribute was added in gcc 2.96. */
971#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
972# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
973#else
974# define _GL_ATTRIBUTE_PURE /* empty */
975#endif
976
977/* The __const__ attribute was added in gcc 2.95. */
978#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
979# define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
980#else
981# define _GL_ATTRIBUTE_CONST /* empty */
982#endif
85c2e611 983
7c3018f9 984#endif /* !_ISOMAC */
28f540f4 985#endif /* libc-symbols.h */