Index: uspace/lib/math/generic/asin.c
===================================================================
--- uspace/lib/math/generic/asin.c	(revision b69786ea48147d53f94db94d13ac0d9122c0fb09)
+++ uspace/lib/math/generic/asin.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -49,10 +49,10 @@
 {
 	float32_t aval;
-	
+
 	if (arg < -1.0 || arg > 1.0) {
 		errno = EDOM;
 		return FLOAT32_NAN;
 	}
-	
+
 	aval = 2.0 * atan_f32(arg / (1.0 + sqrt_f32(1.0 - arg*arg)));
 	if (arg > 0.0)
@@ -74,10 +74,10 @@
 {
 	float64_t aval;
-	
+
 	if (arg < -1.0 || arg > 1.0) {
 		errno = EDOM;
 		return FLOAT64_NAN;
 	}
-	
+
 	aval = 2.0 * atan_f64(arg / (1.0 + sqrt_f64(1.0 - arg*arg)));
 	if (arg > 0.0)
Index: uspace/lib/math/generic/atan.c
===================================================================
--- uspace/lib/math/generic/atan.c	(revision b69786ea48147d53f94db94d13ac0d9122c0fb09)
+++ uspace/lib/math/generic/atan.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -54,10 +54,10 @@
 	float32_t sum = 0;
 	float32_t a = arg / (1.0 + arg * arg);
-	
+
 	/*
 	 * atan(z) = sum(n=0, +inf) [ (2^2n) * (n!)^2 / (2n + 1)! *
 	 *    z^(2n+1) / (1 + z^2)^(n+1) ]
 	 */
-	
+
 	for (unsigned int n = 0; n < SERIES_DEGREE_32; n++) {
 		if (n > 0) {
@@ -68,5 +68,5 @@
 		a = a * 4.0 * arg * arg / (1.0 + arg * arg);
 	}
-	
+
 	return sum;
 }
@@ -86,10 +86,10 @@
 	float64_t sum = 0;
 	float64_t a = arg / (1.0 + arg * arg);
-	
+
 	/*
 	 * atan(z) = sum(n=0, +inf) [ (2^2n) * (n!)^2 / (2n + 1)! *
 	 *    z^(2n+1) / (1 + z^2)^(n+1) ]
 	 */
-	
+
 	for (unsigned int n = 0; n < SERIES_DEGREE_64; n++) {
 		if (n > 0) {
@@ -100,5 +100,5 @@
 		a = a * 4.0 * arg * arg / (1.0 + arg * arg);
 	}
-	
+
 	return sum;
 }
Index: uspace/lib/math/generic/ceil.c
===================================================================
--- uspace/lib/math/generic/ceil.c	(revision b69786ea48147d53f94db94d13ac0d9122c0fb09)
+++ uspace/lib/math/generic/ceil.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -48,8 +48,8 @@
 	float32_u v;
 	float32_u r;
-	
+
 	v.val = val;
 	t.val = trunc_f32(val);
-	
+
 	if (v.data.parts.sign == 1 || val == t.val) {
 		r = t;
@@ -57,5 +57,5 @@
 		r.val = t.val + 1.0;
 	}
-	
+
 	return r.val;
 }
@@ -72,8 +72,8 @@
 	float64_u v;
 	float64_u r;
-	
+
 	v.val = val;
 	t.val = trunc_f64(val);
-	
+
 	if (v.data.parts.sign == 1 || val == t.val) {
 		r = t;
@@ -81,5 +81,5 @@
 		r.val = t.val + 1.0;
 	}
-	
+
 	return r.val;
 }
Index: uspace/lib/math/generic/exp.c
===================================================================
--- uspace/lib/math/generic/exp.c	(revision b69786ea48147d53f94db94d13ac0d9122c0fb09)
+++ uspace/lib/math/generic/exp.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -64,10 +64,10 @@
 	float32_t ret = 1;
 	float32_t nom = 1;
-	
+
 	for (unsigned int i = 0; i < TAYLOR_DEGREE_32; i++) {
 		nom *= arg;
 		ret += nom / factorials[i];
 	}
-	
+
 	return ret;
 }
@@ -89,10 +89,10 @@
 	float64_t ret = 1;
 	float64_t nom = 1;
-	
+
 	for (unsigned int i = 0; i < TAYLOR_DEGREE_64; i++) {
 		nom *= arg;
 		ret += nom / factorials[i];
 	}
-	
+
 	return ret;
 }
Index: uspace/lib/math/generic/floor.c
===================================================================
--- uspace/lib/math/generic/floor.c	(revision b69786ea48147d53f94db94d13ac0d9122c0fb09)
+++ uspace/lib/math/generic/floor.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -48,8 +48,8 @@
 	float32_t t;
 	float32_u v;
-	
+
 	v.val = val;
 	t = trunc_f32(val);
-	
+
 	if (v.data.parts.sign == 0 || val == t)
 		return t;
@@ -69,8 +69,8 @@
 	float64_t t;
 	float64_u v;
-	
+
 	v.val = val;
 	t = trunc_f64(val);
-	
+
 	if (v.data.parts.sign == 0 || val == t)
 		return t;
Index: uspace/lib/math/generic/fmod.c
===================================================================
--- uspace/lib/math/generic/fmod.c	(revision b69786ea48147d53f94db94d13ac0d9122c0fb09)
+++ uspace/lib/math/generic/fmod.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -55,7 +55,7 @@
 {
 	// FIXME: replace with exact arithmetics
-	
+
 	float32_t quotient = trunc_f32(dividend / divisor);
-	
+
 	return (dividend - quotient * divisor);
 }
@@ -80,7 +80,7 @@
 {
 	// FIXME: replace with exact arithmetics
-	
+
 	float64_t quotient = trunc_f64(dividend / divisor);
-	
+
 	return (dividend - quotient * divisor);
 }
Index: uspace/lib/math/generic/log.c
===================================================================
--- uspace/lib/math/generic/log.c	(revision b69786ea48147d53f94db94d13ac0d9122c0fb09)
+++ uspace/lib/math/generic/log.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -55,8 +55,8 @@
 	float32_t ret = 0;
 	float32_t num = 1;
-	
+
 	for (unsigned int i = 1; i <= TAYLOR_DEGREE_32; i++) {
 		num *= arg;
-		
+
 		if ((i % 2) == 0)
 			ret += num / i;
@@ -64,5 +64,5 @@
 			ret -= num / i;
 	}
-	
+
 	return ret;
 }
@@ -83,8 +83,8 @@
 	float64_t ret = 0;
 	float64_t num = 1;
-	
+
 	for (unsigned int i = 1; i <= TAYLOR_DEGREE_64; i++) {
 		num *= arg;
-		
+
 		if ((i % 2) == 0)
 			ret += num / i;
@@ -92,5 +92,5 @@
 			ret -= num / i;
 	}
-	
+
 	return ret;
 }
@@ -107,5 +107,5 @@
 	float32_u m;
 	int e;
-	
+
 	m.val = arg;
 	/*
@@ -118,5 +118,5 @@
 	e = m.data.parts.exp - (FLOAT32_BIAS - 1);
 	m.data.parts.exp = FLOAT32_BIAS - 1;
-	
+
 	/*
 	 * arg = m * 2^e ; log(arg) = log(m) + log(2^e) =
@@ -137,7 +137,7 @@
 	float64_u m;
 	int e;
-	
+
 	m.val = arg;
-	
+
 	/*
 	 * Factor arg into m * 2^e where m has exponent -1,
@@ -149,5 +149,5 @@
 	e = m.data.parts.exp - (FLOAT64_BIAS - 1);
 	m.data.parts.exp = FLOAT64_BIAS - 1;
-	
+
 	/*
 	 * arg = m * 2^e ; log(arg) = log(m) + log(2^e) =
Index: uspace/lib/math/generic/trig.c
===================================================================
--- uspace/lib/math/generic/trig.c	(revision b69786ea48147d53f94db94d13ac0d9122c0fb09)
+++ uspace/lib/math/generic/trig.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -64,8 +64,8 @@
 	float32_t ret = 0;
 	float32_t nom = 1;
-	
+
 	for (unsigned int i = 0; i < TAYLOR_DEGREE_32; i++) {
 		nom *= arg;
-		
+
 		if ((i % 4) == 0)
 			ret += nom / factorials[i];
@@ -73,5 +73,5 @@
 			ret -= nom / factorials[i];
 	}
-	
+
 	return ret;
 }
@@ -93,8 +93,8 @@
 	float64_t ret = 0;
 	float64_t nom = 1;
-	
+
 	for (unsigned int i = 0; i < TAYLOR_DEGREE_64; i++) {
 		nom *= arg;
-		
+
 		if ((i % 4) == 0)
 			ret += nom / factorials[i];
@@ -102,5 +102,5 @@
 			ret -= nom / factorials[i];
 	}
-	
+
 	return ret;
 }
@@ -122,8 +122,8 @@
 	float32_t ret = 1;
 	float32_t nom = 1;
-	
+
 	for (unsigned int i = 0; i < TAYLOR_DEGREE_32; i++) {
 		nom *= arg;
-		
+
 		if ((i % 4) == 1)
 			ret -= nom / factorials[i];
@@ -131,5 +131,5 @@
 			ret += nom / factorials[i];
 	}
-	
+
 	return ret;
 }
@@ -151,8 +151,8 @@
 	float64_t ret = 1;
 	float64_t nom = 1;
-	
+
 	for (unsigned int i = 0; i < TAYLOR_DEGREE_64; i++) {
 		nom *= arg;
-		
+
 		if ((i % 4) == 1)
 			ret -= nom / factorials[i];
@@ -160,5 +160,5 @@
 			ret += nom / factorials[i];
 	}
-	
+
 	return ret;
 }
@@ -179,5 +179,5 @@
 {
 	unsigned int period = arg / (M_PI / 4);
-	
+
 	switch (period) {
 	case 0:
@@ -212,5 +212,5 @@
 {
 	unsigned int period = arg / (M_PI / 4);
-	
+
 	switch (period) {
 	case 0:
@@ -245,5 +245,5 @@
 {
 	unsigned int period = arg / (M_PI / 4);
-	
+
 	switch (period) {
 	case 0:
@@ -278,5 +278,5 @@
 {
 	unsigned int period = arg / (M_PI / 4);
-	
+
 	switch (period) {
 	case 0:
@@ -308,8 +308,8 @@
 {
 	float32_t base_arg = fmod_f32(arg, 2 * M_PI);
-	
+
 	if (base_arg < 0)
 		return -base_sin_32(-base_arg);
-	
+
 	return base_sin_32(base_arg);
 }
@@ -327,8 +327,8 @@
 {
 	float64_t base_arg = fmod_f64(arg, 2 * M_PI);
-	
+
 	if (base_arg < 0)
 		return -base_sin_64(-base_arg);
-	
+
 	return base_sin_64(base_arg);
 }
@@ -346,8 +346,8 @@
 {
 	float32_t base_arg = fmod_f32(arg, 2 * M_PI);
-	
+
 	if (base_arg < 0)
 		return base_cos_32(-base_arg);
-	
+
 	return base_cos_32(base_arg);
 }
@@ -365,8 +365,8 @@
 {
 	float64_t base_arg = fmod_f64(arg, 2 * M_PI);
-	
+
 	if (base_arg < 0)
 		return base_cos_64(-base_arg);
-	
+
 	return base_cos_64(base_arg);
 }
Index: uspace/lib/math/generic/trunc.c
===================================================================
--- uspace/lib/math/generic/trunc.c	(revision b69786ea48147d53f94db94d13ac0d9122c0fb09)
+++ uspace/lib/math/generic/trunc.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -56,8 +56,8 @@
 	float32_u v;
 	int32_t exp;
-	
+
 	v.val = val;
 	exp = v.data.parts.exp - FLOAT32_BIAS;
-	
+
 	if (exp < 0) {
 		/* -1 < val < 1 => result is +0 or -0 */
@@ -69,5 +69,5 @@
 			// FIXME TODO
 		}
-		
+
 		/* All bits in val are relevant for the result */
 	} else {
@@ -75,5 +75,5 @@
 		v.data.parts.fraction &= ~(UINT32_C(0x007fffff) >> exp);
 	}
-	
+
 	return v.val;
 }
@@ -98,8 +98,8 @@
 	float64_u v;
 	int32_t exp;
-	
+
 	v.val = val;
 	exp = v.data.parts.exp - FLOAT64_BIAS;
-	
+
 	if (exp < 0) {
 		/* -1 < val < 1 => result is +0 or -0 */
@@ -111,5 +111,5 @@
 			// FIXME TODO
 		}
-		
+
 		/* All bits in val are relevant for the result */
 	} else {
@@ -117,5 +117,5 @@
 		v.data.parts.fraction &= ~(UINT64_C(0x000fffffffffffff) >> exp);
 	}
-	
+
 	return v.val;
 }
