diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-10 20:35:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-10 20:35:58 +0000 |
commit | dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6 (patch) | |
tree | a9becd75308609486c2e23f9572531fd12d415dc /include | |
parent | 818d08de372d2bf075a9782e50ca8b6c1c1e589f (diff) | |
download | glibc-dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6.tar.gz glibc-dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6.tar.xz glibc-dce8f2b62af23b6ef9e89c3a54cfe002941ef6d6.zip |
Update.
2002-12-10 Jakub Jelinek <jakub@redhat.com> * include/libc-symbols.h: Fix a comment typo. * sysdeps/unix/sysv/linux/alpha/select.S (__libc_select): New alias. * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__libc_sigsuspend): Likewise. * sysdeps/unix/sysv/linux/ia64/sigsuspend.c (__libc_sigsuspend): Likewise. * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c (__libc_sigsuspend): Likewise. * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c (__libc_sigsuspend): Likewise. * sysdeps/generic/creat.c (__libc_creat): Renamed from creat. (creat): New weak alias.
Diffstat (limited to 'include')
-rw-r--r-- | include/libc-symbols.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h index f47a849a75..d7b26e2b1c 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -655,7 +655,7 @@ There is no reason to use hidden_weak over hidden_def in assembly, but we provide it for consistency with the C usage. hidden_proto doesn't make sense for assembly but the equivalent - is to call via the HIDDEN_JUMPTARGET macro einstead of JUMPTARGET. */ + is to call via the HIDDEN_JUMPTARGET macro instead of JUMPTARGET. */ # define hidden_def(name) strong_alias (name, __GI_##name) # define hidden_weak(name) hidden_def (name) # define hidden_ver(local, name) strong_alias (local, __GI_##name) |