Index: uspace/lib/posix/string.c
===================================================================
--- uspace/lib/posix/string.c	(revision 7e10aeee595bef589e5cf5c2e172243469e0c4f6)
+++ uspace/lib/posix/string.c	(revision 3f33b953b365d91867e9c67e1e93d07978976bb1)
@@ -460,5 +460,5 @@
  *     not found.
  */
-char* posix_strstr (const char* haystack, const char* needle)
+char *posix_strstr(const char *haystack, const char *needle)
 {
 	assert(haystack != NULL);
@@ -467,5 +467,5 @@
 	/* Special case - needle is an empty string. */
 	if (needle[0] == '\0') {
-		return (char*) haystack;
+		return (char *) haystack;
 	}
 	
@@ -492,5 +492,5 @@
 	size_t npos = 0;
 	
-	for (size_t hpos = 0; haystack[hpos] != '\0'; ++ hpos) {
+	for (size_t hpos = 0; haystack[hpos] != '\0'; ++hpos) {
 		while (npos != 0 && haystack[hpos] != needle[npos]) {
 			npos = prefix_table[npos];
@@ -498,8 +498,8 @@
 		
 		if (haystack[hpos] == needle[npos]) {
-			npos ++;
+			npos++;
 			
 			if (npos == nlen) {
-				return (char*) (haystack + hpos - nlen + 1);
+				return (char *) (haystack + hpos - nlen + 1);
 			}
 		}
