From 6f7dc709ed7e403af224b0fbb91e9619629eb2ec Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sat, 14 Jan 2006 19:45:02 +0000 Subject: make DODEBUG=y happy, update sysdeps/common/* copyright --- libc/sysdeps/linux/cris/__longjmp.S | 6 +++--- libc/sysdeps/linux/cris/brk.c | 9 ++++++++- libc/sysdeps/linux/cris/fork.c | 6 ++++++ libc/sysdeps/linux/cris/sbrk.c | 8 +++++++- 4 files changed, 24 insertions(+), 5 deletions(-) (limited to 'libc/sysdeps/linux/cris') diff --git a/libc/sysdeps/linux/cris/__longjmp.S b/libc/sysdeps/linux/cris/__longjmp.S index 98472a673..a4a5d4994 100644 --- a/libc/sysdeps/linux/cris/__longjmp.S +++ b/libc/sysdeps/linux/cris/__longjmp.S @@ -17,6 +17,7 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include #include #define _SETJMP_H #define _ASM @@ -35,6 +36,5 @@ ENTRY (__longjmp) movem [$r10],$pc END (__longjmp) - .weak longjmp - longjmp = __longjmp - +libc_hidden_def(__longjmp) +strong_alias(__longjmp,longjmp) diff --git a/libc/sysdeps/linux/cris/brk.c b/libc/sysdeps/linux/cris/brk.c index 8b5aa680c..42a3b6de3 100644 --- a/libc/sysdeps/linux/cris/brk.c +++ b/libc/sysdeps/linux/cris/brk.c @@ -1,8 +1,16 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + #include #include #include #include "sysdep.h" +libc_hidden_proto(brk) + extern void * __curbrk; extern int __init_brk (void); @@ -29,5 +37,4 @@ int brk(void * end_data_seg) return -1; } -libc_hidden_proto(brk) libc_hidden_def(brk) diff --git a/libc/sysdeps/linux/cris/fork.c b/libc/sysdeps/linux/cris/fork.c index 11b546127..53c071e5c 100644 --- a/libc/sysdeps/linux/cris/fork.c +++ b/libc/sysdeps/linux/cris/fork.c @@ -1,3 +1,9 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + #include #define __NR___libc_fork __NR_fork diff --git a/libc/sysdeps/linux/cris/sbrk.c b/libc/sysdeps/linux/cris/sbrk.c index 9eb9a2a0e..04c4b5b0a 100644 --- a/libc/sysdeps/linux/cris/sbrk.c +++ b/libc/sysdeps/linux/cris/sbrk.c @@ -1,10 +1,17 @@ /* From libc-5.3.12 */ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ #include #include #include #include "sysdep.h" +libc_hidden_proto(sbrk) + extern void * __curbrk; extern int __init_brk (void); @@ -34,5 +41,4 @@ sbrk(intptr_t increment) } return ((void *) -1); } -libc_hidden_proto(sbrk) libc_hidden_def(sbrk) -- cgit v1.2.3