Index: uspace/lib/math/arch/amd64/src/cos.S
===================================================================
--- uspace/lib/math/arch/amd64/src/cos.S	(revision 5918c0032bab252d0f42f711f1c2ae2afbe8725b)
+++ uspace/lib/math/arch/amd64/src/cos.S	(revision 615e83d68dc1cfdb51a3e2557d4776a37010a7ca)
@@ -35,31 +35,31 @@
 	pushq %rbp
 	movq %rsp, %rbp
-	
+
 	# compute cosine (using red zone)
-	
+
 	movsd %xmm0, -8(%rbp)
 	fldl -8(%rbp)
-	
+
 	fcos
-	
+
 	# detect if source operand is out of range
-	
+
 	fnstsw %ax
 	andw $X87_STATUS_WORD_C2_MASK, %ax
 	jnz fix_range
-	
+
 		fstpl -8(%rbp)
 		movsd -8(%rbp), %xmm0
-		
+
 		leave
 		retq
-	
+
 	# argument reduction
-	
+
 	fix_range:
 		fldpi
 		fadd %st(0)
 		fxch %st(1)
-	
+
 	reduce:
 		fprem1
@@ -67,11 +67,11 @@
 		andw $X87_STATUS_WORD_C2_MASK, %ax
 		jnz reduce
-	
+
 	fstp %st(1)
 	fcos
-	
+
 	fstpl -8(%rbp)
 	movsd -8(%rbp), %xmm0
-	
+
 	leave
 	retq
Index: uspace/lib/math/arch/amd64/src/sin.S
===================================================================
--- uspace/lib/math/arch/amd64/src/sin.S	(revision 5918c0032bab252d0f42f711f1c2ae2afbe8725b)
+++ uspace/lib/math/arch/amd64/src/sin.S	(revision 615e83d68dc1cfdb51a3e2557d4776a37010a7ca)
@@ -35,31 +35,31 @@
 	pushq %rbp
 	movq %rsp, %rbp
-	
+
 	# compute sine (using red zone)
-	
+
 	movsd %xmm0, -8(%rbp)
 	fldl -8(%rbp)
-	
+
 	fsin
-	
+
 	# detect if source operand is out of range
-	
+
 	fnstsw %ax
 	andw $X87_STATUS_WORD_C2_MASK, %ax
 	jnz fix_range
-	
+
 		fstpl -8(%rbp)
 		movsd -8(%rbp), %xmm0
-		
+
 		leave
 		retq
-	
+
 	# argument reduction
-	
+
 	fix_range:
 		fldpi
 		fadd %st(0)
 		fxch %st(1)
-	
+
 	reduce:
 		fprem1
@@ -67,11 +67,11 @@
 		andw $X87_STATUS_WORD_C2_MASK, %ax
 		jnz reduce
-	
+
 	fstp %st(1)
 	fsin
-	
+
 	fstpl -8(%rbp)
 	movsd -8(%rbp), %xmm0
-	
+
 	leave
 	retq
Index: uspace/lib/math/arch/amd64/src/trunc.S
===================================================================
--- uspace/lib/math/arch/amd64/src/trunc.S	(revision 5918c0032bab252d0f42f711f1c2ae2afbe8725b)
+++ uspace/lib/math/arch/amd64/src/trunc.S	(revision 615e83d68dc1cfdb51a3e2557d4776a37010a7ca)
@@ -35,19 +35,19 @@
 	pushq %rbp
 	movq %rsp, %rbp
-	
+
 	# store x87 control word in the red zone
-	
+
 	fnstcw -8(%rbp)
 	movw -8(%rbp), %ax
-	
+
 	# set rounding control to truncate
 	# (no masking necessary for this flag)
-	
+
 	orw $X87_CONTROL_WORD_RC_TRUNCATE, %ax
 	movw %ax, -16(%rbp)
 	fldcw -16(%rbp)
-	
+
 	# truncate
-	
+
 	movsd %xmm0, -16(%rbp)
 	fldl -16(%rbp)
@@ -55,9 +55,9 @@
 	fstpl -16(%rbp)
 	movsd -16(%rbp), %xmm0
-	
+
 	# restore original control word
-	
+
 	fldcw -8(%rbp)
-	
+
 	leave
 	retq
Index: uspace/lib/math/arch/ia32/src/cos.S
===================================================================
--- uspace/lib/math/arch/ia32/src/cos.S	(revision 5918c0032bab252d0f42f711f1c2ae2afbe8725b)
+++ uspace/lib/math/arch/ia32/src/cos.S	(revision 615e83d68dc1cfdb51a3e2557d4776a37010a7ca)
@@ -34,23 +34,23 @@
 FUNCTION_BEGIN(cos_f64)
 	# compute cosine (no stack frame)
-	
+
 	fldl 4(%esp)
 	fcos
-	
+
 	# detect if source operand is out of range
-	
+
 	fnstsw %ax
 	andw $X87_STATUS_WORD_C2_MASK, %ax
 	jnz fix_range
-	
+
 		ret
-	
+
 	# argument reduction
-	
+
 	fix_range:
 		fldpi
 		fadd %st(0)
 		fxch %st(1)
-	
+
 	reduce:
 		fprem1
@@ -58,8 +58,8 @@
 		andw $X87_STATUS_WORD_C2_MASK, %ax
 		jnz reduce
-	
+
 	fstp %st(1)
 	fcos
-	
+
 	ret
 FUNCTION_END(cos_f64)
Index: uspace/lib/math/arch/ia32/src/sin.S
===================================================================
--- uspace/lib/math/arch/ia32/src/sin.S	(revision 5918c0032bab252d0f42f711f1c2ae2afbe8725b)
+++ uspace/lib/math/arch/ia32/src/sin.S	(revision 615e83d68dc1cfdb51a3e2557d4776a37010a7ca)
@@ -34,23 +34,23 @@
 FUNCTION_BEGIN(sin_f64)
 	# compute sine (no stack frame)
-	
+
 	fldl 4(%esp)
 	fsin
-	
+
 	# detect if source operand is out of range
-	
+
 	fnstsw %ax
 	andw $X87_STATUS_WORD_C2_MASK, %ax
 	jnz fix_range
-	
+
 		ret
-	
+
 	# argument reduction
-	
+
 	fix_range:
 		fldpi
 		fadd %st(0)
 		fxch %st(1)
-	
+
 	reduce:
 		fprem1
@@ -58,8 +58,8 @@
 		andw $X87_STATUS_WORD_C2_MASK, %ax
 		jnz reduce
-	
+
 	fstp %st(1)
 	fsin
-	
+
 	ret
 FUNCTION_END(sin_f64)
Index: uspace/lib/math/arch/ia32/src/trunc.S
===================================================================
--- uspace/lib/math/arch/ia32/src/trunc.S	(revision 5918c0032bab252d0f42f711f1c2ae2afbe8725b)
+++ uspace/lib/math/arch/ia32/src/trunc.S	(revision 615e83d68dc1cfdb51a3e2557d4776a37010a7ca)
@@ -36,26 +36,26 @@
 	movl %esp, %ebp
 	subl $8, %esp
-	
+
 	# store x87 control word
-	
+
 	fnstcw -4(%ebp)
 	movw -4(%ebp), %ax
-	
+
 	# set rounding control to truncate
 	# (no masking necessary for this flag)
-	
+
 	orw $X87_CONTROL_WORD_RC_TRUNCATE, %ax
 	movw %ax, -8(%ebp)
 	fldcw -8(%ebp)
-	
+
 	# truncate
-	
+
 	fldl 8(%ebp)
 	frndint
-	
+
 	# restore original control word
-	
+
 	fldcw -4(%ebp)
-	
+
 	leave
 	ret
