diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/morecore.c | 3 | ||||
-rw-r--r-- | sysdeps/generic/siglist.c | 3 | ||||
-rw-r--r-- | sysdeps/gnu/siglist.c | 3 | ||||
-rw-r--r-- | sysdeps/posix/getaddrinfo.c | 3 | ||||
-rw-r--r-- | sysdeps/unix/siglist.c | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/siglist.c | 3 |
6 files changed, 12 insertions, 6 deletions
diff --git a/sysdeps/generic/morecore.c b/sysdeps/generic/morecore.c index 23bc7e5597..53969f59bf 100644 --- a/sysdeps/generic/morecore.c +++ b/sysdeps/generic/morecore.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 93, 94, 95, 97 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 93, 94, 95, 97, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -30,6 +30,7 @@ systems with potentially hostile include files. */ #include <stddef.h> +#include <stdlib.h> extern __malloc_ptr_t __sbrk __P ((ptrdiff_t increment)); libc_hidden_proto (__sbrk) #endif diff --git a/sysdeps/generic/siglist.c b/sysdeps/generic/siglist.c index 0ba3032a0b..b7b48a786b 100644 --- a/sysdeps/generic/siglist.c +++ b/sysdeps/generic/siglist.c @@ -1,5 +1,5 @@ /* Define list of all signal numbers and their names. - Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -27,6 +27,7 @@ const char *const _sys_siglist[NSIG] = #include <siglist.h> #undef init_sig }; +strong_alias (_sys_siglist, _sys_siglist_internal) const char *const _sys_sigabbrev[NSIG] = diff --git a/sysdeps/gnu/siglist.c b/sysdeps/gnu/siglist.c index 8275415e7c..345803f118 100644 --- a/sysdeps/gnu/siglist.c +++ b/sysdeps/gnu/siglist.c @@ -1,5 +1,5 @@ /* Define list of all signal numbers and their names. - Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -42,6 +42,7 @@ const char *const __new_sys_siglist[NSIG] = #include <siglist.h> #undef init_sig }; +strong_alias (__new_sys_siglist, _sys_siglist_internal) #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1) asm (".type __old_sys_siglist,@object\n\t.size __old_sys_siglist," diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index cdd1d887d8..dc3c89f4fd 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -539,7 +539,8 @@ gaih_inet (const char *name, const struct gaih_service *service, { at->family = AF_INET6; if ((req->ai_flags & AI_PASSIVE) == 0) - memcpy (at->addr, &in6addr_loopback, sizeof (struct in6_addr)); + memcpy (at->addr, &INTUSE(in6addr_loopback), + sizeof (struct in6_addr)); atr = at->next; } diff --git a/sysdeps/unix/siglist.c b/sysdeps/unix/siglist.c index b7e5cde5b9..821a2b0482 100644 --- a/sysdeps/unix/siglist.c +++ b/sysdeps/unix/siglist.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -57,5 +57,6 @@ const char *const _sys_siglist[] = N_("User defined signal 2"), NULL }; +strong_alias (_sys_siglist, _sys_siglist_internal) weak_alias (_sys_siglist, sys_siglist) diff --git a/sysdeps/unix/sysv/linux/arm/siglist.c b/sysdeps/unix/sysv/linux/arm/siglist.c index e053339908..d5fdb5d619 100644 --- a/sysdeps/unix/sysv/linux/arm/siglist.c +++ b/sysdeps/unix/sysv/linux/arm/siglist.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 2000, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -32,6 +32,7 @@ const char *const __new_sys_siglist[NSIG] = #include "siglist.h" #undef init_sig }; +strong_alias (__new_sys_siglist, _sys_siglist_internal) #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1) asm (".type __old_sys_siglist,%object;.size __old_sys_siglist," |