Index: uspace/lib/softfloat/comparison.c
===================================================================
--- uspace/lib/softfloat/comparison.c	(revision ae7d03c05f24b857bbbdbcf3dafbf8ecc6c286ab)
+++ uspace/lib/softfloat/comparison.c	(revision a05ec6671002c451fceb01aa0ab3f71f004efb6d)
@@ -85,6 +85,8 @@
 int is_float32_signan(float32 f)
 {
-	/* SigNaN : exp = 0xff and fraction = 0xxxxx..x (binary),
-	 * where at least one x is nonzero */
+	/*
+	 * SigNaN : exp = 0xff and fraction = 0xxxxx..x (binary),
+	 * where at least one x is nonzero
+	 */
 	return ((f.parts.exp == 0xFF) &&
 	    (f.parts.fraction < 0x400000) && (f.parts.fraction));
@@ -99,6 +101,8 @@
 int is_float64_signan(float64 d)
 {
-	/* SigNaN : exp = 0x7ff and fraction = 0xxxxx..x (binary),
-	 * where at least one x is nonzero */
+	/*
+	 * SigNaN : exp = 0x7ff and fraction = 0xxxxx..x (binary),
+	 * where at least one x is nonzero
+	 */
 	return ((d.parts.exp == 0x7FF) &&
 	    (d.parts.fraction) && (d.parts.fraction < 0x8000000000000ll));
@@ -113,6 +117,8 @@
 int is_float128_signan(float128 ld)
 {
-	/* SigNaN : exp = 0x7fff and fraction = 0xxxxx..x (binary),
-	 * where at least one x is nonzero */
+	/*
+	 * SigNaN : exp = 0x7fff and fraction = 0xxxxx..x (binary),
+	 * where at least one x is nonzero
+	 */
 	return ((ld.parts.exp == 0x7FFF) &&
 	    (ld.parts.frac_hi || ld.parts.frac_lo) &&
Index: uspace/lib/softfloat/div.c
===================================================================
--- uspace/lib/softfloat/div.c	(revision ae7d03c05f24b857bbbdbcf3dafbf8ecc6c286ab)
+++ uspace/lib/softfloat/div.c	(revision a05ec6671002c451fceb01aa0ab3f71f004efb6d)
@@ -481,7 +481,9 @@
 	    &tmp_lolo /* dummy */, &tmp_hihi, &tmp_hilo, &tmp_lohi);
 
-	/* sub192(afrac_hi, afrac_lo, 0,
+	/*
+	 * sub192(afrac_hi, afrac_lo, 0,
 	 *     tmp_hihi, tmp_hilo, tmp_lohi
-	 *     &rem_hihi, &rem_hilo, &rem_lohi); */
+	 *     &rem_hihi, &rem_hilo, &rem_lohi);
+	 */
 	sub128(afrac_hi, afrac_lo, tmp_hihi, tmp_hilo, &rem_hihi, &rem_hilo);
 	if (tmp_lohi > 0) {
@@ -492,7 +494,9 @@
 	while ((int64_t) rem_hihi < 0) {
 		--cfrac_hi;
-		/* add192(rem_hihi, rem_hilo, rem_lohi,
+		/*
+		 * add192(rem_hihi, rem_hilo, rem_lohi,
 		 *     0, bfrac_hi, bfrac_lo,
-		 *     &rem_hihi, &rem_hilo, &rem_lohi); */
+		 *     &rem_hihi, &rem_hilo, &rem_lohi);
+		 */
 		add128(rem_hilo, rem_lohi, bfrac_hi, bfrac_lo, &rem_hilo, &rem_lohi);
 		if (lt128(rem_hilo, rem_lohi, bfrac_hi, bfrac_lo)) {
@@ -507,7 +511,9 @@
 		    &tmp_hihi /* dummy */, &tmp_hilo, &tmp_lohi, &tmp_lolo);
 
-		/* sub192(rem_hilo, rem_lohi, 0,
+		/*
+		 * sub192(rem_hilo, rem_lohi, 0,
 		 *     tmp_hilo, tmp_lohi, tmp_lolo,
-		 *     &rem_hilo, &rem_lohi, &rem_lolo); */
+		 *     &rem_hilo, &rem_lohi, &rem_lolo);
+		 */
 		sub128(rem_hilo, rem_lohi, tmp_hilo, tmp_lohi, &rem_hilo, &rem_lohi);
 		if (tmp_lolo > 0) {
@@ -518,7 +524,9 @@
 		while ((int64_t) rem_hilo < 0) {
 			--cfrac_lo;
-			/* add192(rem_hilo, rem_lohi, rem_lolo,
+			/*
+			 * add192(rem_hilo, rem_lohi, rem_lolo,
 			 *     0, bfrac_hi, bfrac_lo,
-			 *     &rem_hilo, &rem_lohi, &rem_lolo); */
+			 *     &rem_hilo, &rem_lohi, &rem_lolo);
+			 */
 			add128(rem_lohi, rem_lolo, bfrac_hi, bfrac_lo, &rem_lohi, &rem_lolo);
 			if (lt128(rem_lohi, rem_lolo, bfrac_hi, bfrac_lo)) {
