about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/mips/sys/ucontext.h
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-06-02 13:10:38 +0000
committerAndreas Jaeger <aj@suse.de>2000-06-02 13:10:38 +0000
commit47d443875bdd62bfb02dead39171fb5723ae56ac (patch)
tree121c67f696a0c2fe5b319ecfd76e2c6704330c15 /sysdeps/unix/sysv/linux/mips/sys/ucontext.h
parent75e8d1f5161eb39a3a05b81044229ba9d2614e94 (diff)
downloadglibc-47d443875bdd62bfb02dead39171fb5723ae56ac.tar.gz
glibc-47d443875bdd62bfb02dead39171fb5723ae56ac.tar.xz
glibc-47d443875bdd62bfb02dead39171fb5723ae56ac.zip
* sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Fix typo.
Reported by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
Diffstat (limited to 'sysdeps/unix/sysv/linux/mips/sys/ucontext.h')
-rw-r--r--sysdeps/unix/sysv/linux/mips/sys/ucontext.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/sys/ucontext.h b/sysdeps/unix/sysv/linux/mips/sys/ucontext.h
index 84c6d02297..b015898c2d 100644
--- a/sysdeps/unix/sysv/linux/mips/sys/ucontext.h
+++ b/sysdeps/unix/sysv/linux/mips/sys/ucontext.h
@@ -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 {