diff options
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/morecore.c | 3 | ||||
-rw-r--r-- | sysdeps/generic/siglist.c | 3 |
2 files changed, 4 insertions, 2 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] = |