about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-04-20 00:10:55 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-04-20 01:27:13 +0200
commit81b032c833a01491dfa35e9fdc5c2d4e523df163 (patch)
tree2e420b08d7979f8118efc7051d701b0e49cf6da5 /sysdeps
parent5dbfe13b35195cd1292b81787a0ef58db828c7d5 (diff)
downloadglibc-81b032c833a01491dfa35e9fdc5c2d4e523df163.tar.gz
glibc-81b032c833a01491dfa35e9fdc5c2d4e523df163.tar.xz
glibc-81b032c833a01491dfa35e9fdc5c2d4e523df163.zip
Drop fpregset unused symbol exposition
	* sysdeps/arm/sys/ucontext.h: Remove fpregset struct name, unused and
	non-compliant.
	* sysdeps/i386/sys/ucontext.h: Likewise.
	* sysdeps/m68k/sys/ucontext.h: Likewise.
	* sysdeps/mips/sys/ucontext.h: Likewise.
	* sysdeps/unix/sysv/linux/hppa/sys/ucontext.h: Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/arm/sys/ucontext.h2
-rw-r--r--sysdeps/i386/sys/ucontext.h2
-rw-r--r--sysdeps/m68k/sys/ucontext.h2
-rw-r--r--sysdeps/mips/sys/ucontext.h2
-rw-r--r--sysdeps/unix/sysv/linux/hppa/sys/ucontext.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/arm/sys/ucontext.h b/sysdeps/arm/sys/ucontext.h
index fa5996458d..ababe5a062 100644
--- a/sysdeps/arm/sys/ucontext.h
+++ b/sysdeps/arm/sys/ucontext.h
@@ -83,7 +83,7 @@ enum
 #endif
 
 /* Structure to describe FPU registers.  */
-typedef struct fpregset
+typedef struct
   {
   } fpregset_t;
 
diff --git a/sysdeps/i386/sys/ucontext.h b/sysdeps/i386/sys/ucontext.h
index 5dcecbb7bc..23cee16e80 100644
--- a/sysdeps/i386/sys/ucontext.h
+++ b/sysdeps/i386/sys/ucontext.h
@@ -92,7 +92,7 @@ enum
 #endif
 
 /* Structure to describe FPU registers.  */
-typedef struct fpregset
+typedef struct
   {
     union
       {
diff --git a/sysdeps/m68k/sys/ucontext.h b/sysdeps/m68k/sys/ucontext.h
index 14232d268a..7b723d6862 100644
--- a/sysdeps/m68k/sys/ucontext.h
+++ b/sysdeps/m68k/sys/ucontext.h
@@ -83,7 +83,7 @@ enum
 };
 
 /* Structure to describe FPU registers.  */
-typedef struct fpregset
+typedef struct
 {
   int f_pcr;
   int f_psr;
diff --git a/sysdeps/mips/sys/ucontext.h b/sysdeps/mips/sys/ucontext.h
index 4612e415ad..aaa08fdea9 100644
--- a/sysdeps/mips/sys/ucontext.h
+++ b/sysdeps/mips/sys/ucontext.h
@@ -131,7 +131,7 @@ enum
 #endif
 
 /* Structure to describe FPU registers.  */
-typedef struct fpregset
+typedef struct
 {
   union
   {
diff --git a/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h b/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h
index 897bf5d326..6037227b2a 100644
--- a/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h
+++ b/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h
@@ -50,7 +50,7 @@ typedef struct gregset
   } gregset_t;
 
 /* Container for all FPU registers.  */
-typedef struct fpregset
+typedef struct
   {
     double fp_dregs[32];
   } fpregset_t;