mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
* sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Fix typo.
Reported by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
This commit is contained in:
parent
75e8d1f516
commit
47d443875b
@ -37,15 +37,15 @@ typedef unsigned long int greg_t;
|
||||
#define NFPREG 33
|
||||
|
||||
/* Container for all general registers. */
|
||||
typedef greg_t gregset_t[NGREG];
|
||||
/* gregset_t must be an array. The array correspondends to:
|
||||
/* gregset_t must be an array. The below declared array corresponds to:
|
||||
typedef struct gregset {
|
||||
greg_t g_regs[32];
|
||||
greg_t g_hi;
|
||||
greg_t g_lo;
|
||||
greg_t g_pad[3];
|
||||
} gregset_t;
|
||||
*/
|
||||
} gregset_t; */
|
||||
typedef greg_t gregset_t[NGREG];
|
||||
|
||||
/* Container for all FPU registers. */
|
||||
typedef struct fpregset {
|
||||
union {
|
||||
|
Loading…
Reference in New Issue
Block a user