about summary refs log tree commit diff
path: root/sysdeps/ieee754/support.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/support.c')
-rw-r--r--sysdeps/ieee754/support.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/ieee754/support.c b/sysdeps/ieee754/support.c
index 2651ea8be4..00476c0ed9 100644
--- a/sysdeps/ieee754/support.c
+++ b/sysdeps/ieee754/support.c
@@ -354,16 +354,16 @@ double x,y;
 	static const n0=0,n1=1,n2=2,n3=3;
 #endif
 
-    	static const unsigned short mexp =0x7ff0, m25 =0x0190, m57 =0x0390;
+	static const unsigned short mexp =0x7ff0, m25 =0x0190, m57 =0x0390;
 	static const double zero=0.0;
 	double hy,y1,t,t1;
 	short k;
 	long n;
 	int i,e;
 	unsigned short xexp,yexp, *px  =(unsigned short *) &x  ,
-	      		nx,nf,	  *py  =(unsigned short *) &y  ,
-	      		sign,	  *pt  =(unsigned short *) &t  ,
-	      			  *pt1 =(unsigned short *) &t1 ;
+			nx,nf,	  *py  =(unsigned short *) &y  ,
+			sign,	  *pt  =(unsigned short *) &t  ,
+				  *pt1 =(unsigned short *) &t1 ;
 
 	xexp = px[n0] & mexp ;	/* exponent of x */
 	yexp = py[n0] & mexp ;	/* exponent of y */