Index: uspace/lib/softint/generic/multiplication.c
===================================================================
--- uspace/lib/softint/generic/multiplication.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/lib/softint/generic/multiplication.c	(revision e3f819f43b108ff90a50324cbced9c2b89d2171e)
@@ -40,5 +40,5 @@
 /** Set 1 to return INT64_MAX or INT64_MIN on overflow */
 #ifndef SOFTINT_CHECK_OF
-	#define SOFTINT_CHECK_OF  0
+#define SOFTINT_CHECK_OF  0
 #endif
 
@@ -48,5 +48,6 @@
  *
  */
-static unsigned long long mul(unsigned int a, unsigned int b) {
+static unsigned long long mul(unsigned int a, unsigned int b)
+{
 	unsigned int a1 = a >> 16;
 	unsigned int a2 = a & UINT16_MAX;
