aboutsummaryrefslogtreecommitdiff
path: root/include/libc-symbols.h
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2023-05-20 13:37:47 +0000
committerPaul Pluzhnikov <ppluzhnikov@google.com>2023-06-02 01:39:48 +0000
commit7f0d9e61f40c669fca3cfd1e342fa8236c7220b7 (patch)
treee02ce0ba813f2cb4f20643988ec030292784cab6 /include/libc-symbols.h
parent5013f6fc6c44160e8ec6bcd34ba676e85d9d6ab6 (diff)
downloadglibc-7f0d9e61f40c669fca3cfd1e342fa8236c7220b7.tar
glibc-7f0d9e61f40c669fca3cfd1e342fa8236c7220b7.tar.gz
glibc-7f0d9e61f40c669fca3cfd1e342fa8236c7220b7.tar.bz2
glibc-7f0d9e61f40c669fca3cfd1e342fa8236c7220b7.zip
Fix all the remaining misspellings -- BZ 25337
Diffstat (limited to 'include/libc-symbols.h')
-rw-r--r--include/libc-symbols.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h
index 37c91bb3a4..5794614488 100644
--- a/include/libc-symbols.h
+++ b/include/libc-symbols.h
@@ -338,7 +338,7 @@ for linking")
_set_symbol_version (real, #name "@@" #version)
# endif
-/* Evalutes to a string literal for VERSION in LIB. */
+/* Evaluates to a string literal for VERSION in LIB. */
# define symbol_version_string(lib, version) \
_symbol_version_stringify_1 (VERSION_##lib##_##version)
# define _symbol_version_stringify_1(arg) _symbol_version_stringify_2 (arg)
@@ -712,7 +712,7 @@ for linking")
If you have an implementation for foo which e.g. uses a special hardware
feature which isn't available on all machines where this libc.so will be
- used but decideable if available at runtime e.g. via hwcaps, you can provide
+ used but decidable if available at runtime e.g. via hwcaps, you can provide
two or multiple implementations of foo:
int __foo_default (int __bar)
@@ -765,7 +765,7 @@ for linking")
: __foo_default);
This will define the ifunc'ed symbol foo like above. The redirection of foo
- in header file is needed to omit an additional defintion of __GI_foo which
+ in header file is needed to omit an additional definition of __GI_foo which
would end in a linker error while linking libc.so. You have to specify
__redirect_foo as first parameter which is used within libc_ifunc_redirected
macro in conjunction with typeof to define the ifunc'ed symbol foo.