Index: uspace/lib/posix/src/sys/mman.c
===================================================================
--- uspace/lib/posix/src/sys/mman.c	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/posix/src/sys/mman.c	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -44,11 +44,11 @@
 	if (!start)
 		start = AS_AREA_ANY;
-	
+
 //	if (!((flags & MAP_SHARED) ^ (flags & MAP_PRIVATE)))
 //		return MAP_FAILED;
-	
+
 	if (!(flags & MAP_ANONYMOUS))
 		return MAP_FAILED;
-	
+
 	return as_area_create(start, length, prot, AS_AREA_UNPAGED);
 }
Index: uspace/lib/posix/src/sys/stat.c
===================================================================
--- uspace/lib/posix/src/sys/stat.c	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/posix/src/sys/stat.c	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -52,8 +52,8 @@
 {
 	memset(dest, 0, sizeof(struct stat));
-	
+
 	dest->st_dev = src->service;
 	dest->st_ino = src->index;
-	
+
 	/* HelenOS doesn't support permissions, so we set them all */
 	dest->st_mode = S_IRWXU | S_IRWXG | S_IRWXO;
@@ -64,5 +64,5 @@
 		dest->st_mode |= S_IFDIR;
 	}
-	
+
 	dest->st_nlink = src->lnkcnt;
 	dest->st_size = src->size;
Index: uspace/lib/posix/src/sys/wait.c
===================================================================
--- uspace/lib/posix/src/sys/wait.c	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/posix/src/sys/wait.c	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -95,13 +95,13 @@
 	assert(stat_ptr != NULL);
 	assert(options == 0 /* None of the options are supported. */);
-	
+
 	task_exit_t texit;
 	int retval;
-	
+
 	if (failed(task_wait_task_id((task_id_t) pid, &texit, &retval))) {
 		/* Unable to retrieve status. */
 		return (pid_t) -1;
 	}
-	
+
 	if (texit == TASK_EXIT_NORMAL) {
 		// FIXME: relies on application not returning this value
@@ -112,5 +112,5 @@
 		*stat_ptr = INT_MIN;
 	}
-	
+
 	return pid;
 }
