From b82f6af254b7b7ea6c7dfa680d43b093198ed817 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 14 Apr 2000 17:36:37 +0000 Subject: 2000-04-14 Andreas Jaeger * weaks.c: Fix typo. 2000-04-14 Andreas Jaeger * sysdeps/generic/madvise.c: Fix typos. * sysdeps/unix/sysv/linux/mips/clone.S (error): Use __PIC__. * sysdeps/mips/bits/setjmp.h: Remove K&R compatibility. * sysdeps/mips/setjmp_aux.c (__sigsetjmp_aux): Silence gcc warnings. 2000-04-14 Andreas Jaeger * weaks.c: Fix typo. --- sysdeps/mips/setjmp_aux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sysdeps/mips/setjmp_aux.c') diff --git a/sysdeps/mips/setjmp_aux.c b/sysdeps/mips/setjmp_aux.c index d06732efc2..e7b83c4d3c 100644 --- a/sysdeps/mips/setjmp_aux.c +++ b/sysdeps/mips/setjmp_aux.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). @@ -39,10 +39,10 @@ __sigsetjmp_aux (jmp_buf env, int savemask, int sp, int fp) asm volatile ("sw $31, %0" : : "m" (env[0].__jmpbuf[0].__pc)); /* .. and the stack pointer; */ - env[0].__jmpbuf[0].__sp = sp; + env[0].__jmpbuf[0].__sp = (void *) sp; /* .. and the FP; it'll be in s8. */ - env[0].__jmpbuf[0].__fp = fp; + env[0].__jmpbuf[0].__fp = (void *) fp; /* .. and the GP; */ asm volatile ("sw $gp, %0" : : "m" (env[0].__jmpbuf[0].__gp)); -- cgit v1.2.3