diff options
author | Ondrej Bilka <neleai@seznam.cz> | 2013-06-06 19:36:03 +0200 |
---|---|---|
committer | Ondrej Bilka <neleai@seznam.cz> | 2013-06-06 20:36:07 +0200 |
commit | 350635a59a000fa4561d0d8bbe6814b4b9df530c (patch) | |
tree | ab4ec502e1944f8290eba1102ac210a3806b92a3 /sysdeps/ieee754/support.c | |
parent | 25506f09dda0d3d579d98971b3b12dd3e9e2fe8f (diff) | |
download | glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.tar.gz glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.tar.xz glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.zip |
Fix leading whitespaces.
Diffstat (limited to 'sysdeps/ieee754/support.c')
-rw-r--r-- | sysdeps/ieee754/support.c | 8 |
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 */ |