diff options
author | Andreas Jaeger <aj@suse.de> | 2000-04-14 17:36:37 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-04-14 17:36:37 +0000 |
commit | b82f6af254b7b7ea6c7dfa680d43b093198ed817 (patch) | |
tree | ca94facec57c8a6af391ea45353a96472fdad18e /sysdeps/mips/bits/setjmp.h | |
parent | bb8e0116cd59b11053154fb4adbad9f06a344147 (diff) | |
download | glibc-b82f6af254b7b7ea6c7dfa680d43b093198ed817.tar.gz glibc-b82f6af254b7b7ea6c7dfa680d43b093198ed817.tar.xz glibc-b82f6af254b7b7ea6c7dfa680d43b093198ed817.zip |
2000-04-14 Andreas Jaeger <aj@suse.de>
* weaks.c: Fix typo. 2000-04-14 Andreas Jaeger <aj@suse.de> * 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 <aj@suse.de> * weaks.c: Fix typo.
Diffstat (limited to 'sysdeps/mips/bits/setjmp.h')
-rw-r--r-- | sysdeps/mips/bits/setjmp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sysdeps/mips/bits/setjmp.h b/sysdeps/mips/bits/setjmp.h index ff3d75f821..908b6d5935 100644 --- a/sysdeps/mips/bits/setjmp.h +++ b/sysdeps/mips/bits/setjmp.h @@ -1,5 +1,5 @@ /* Define the machine-dependent type `jmp_buf'. MIPS version. - Copyright (C) 1992, 1993, 1995, 1997 Free Software Foundation, Inc. + Copyright (C) 1992,93,95,97,2000 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -23,19 +23,19 @@ typedef struct { /* Program counter. */ - __ptr_t __pc; + void * __pc; /* Stack pointer. */ - __ptr_t __sp; + void * __sp; /* Callee-saved registers s0 through s7. */ int __regs[8]; /* The frame pointer. */ - __ptr_t __fp; + void * __fp; /* The global pointer. */ - __ptr_t __gp; + void * __gp; /* Floating point status register. */ int __fpc_csr; @@ -53,4 +53,4 @@ typedef struct /* Test if longjmp to JMPBUF would unwind the frame containing a local variable at ADDRESS. */ #define _JMPBUF_UNWINDS(jmpbuf, address) \ - ((__ptr_t) (address) < (jmpbuf)[0].__sp) + ((void *) (address) < (jmpbuf)[0].__sp) |