Index: uspace/lib/c/include/adt/hash_table.h
===================================================================
--- uspace/lib/c/include/adt/hash_table.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/adt/hash_table.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -51,8 +51,8 @@
 	/** Returns the hash of the key stored in the item (ie its lookup key). */
 	size_t (*hash)(const ht_link_t *item);
-	
+
 	/** Returns the hash of the key. */
 	size_t (*key_hash)(void *key);
-	
+
 	/** True if the items are equal (have the same lookup keys). */
 	bool (*equal)(const ht_link_t *item1, const ht_link_t *item2);
Index: uspace/lib/c/include/adt/list.h
===================================================================
--- uspace/lib/c/include/adt/list.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/adt/list.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -231,5 +231,5 @@
 		link->prev->next = link->next;
 	}
-	
+
 	link_initialize(link);
 }
@@ -314,7 +314,7 @@
 	part1->prev->next = part2;
 	part2->prev->next = part1;
-	
+
 	link_t *hlp = part1->prev;
-	
+
 	part1->prev = part2->prev;
 	part2->prev = hlp;
@@ -378,14 +378,14 @@
 {
 	unsigned long cnt = 0;
-	
+
 	link_t *link = list_first(list);
 	while (link != NULL) {
 		if (cnt == n)
 			return link;
-		
+
 		cnt++;
 		link = list_next(link, list);
 	}
-	
+
 	return NULL;
 }
Index: uspace/lib/c/include/as.h
===================================================================
--- uspace/lib/c/include/as.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/as.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -46,5 +46,5 @@
 	if (size == 0)
 		return 0;
-	
+
 	return (size_t) ((size - 1) >> PAGE_WIDTH) + 1;
 }
Index: uspace/lib/c/include/async.h
===================================================================
--- uspace/lib/c/include/async.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/async.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -82,5 +82,5 @@
 	 */
 	EXCHANGE_ATOMIC = 0,
-	
+
 	/** Exchange management via mutual exclusion
 	 *
@@ -90,5 +90,5 @@
 	 */
 	EXCHANGE_SERIALIZE = 1,
-	
+
 	/** Exchange management via phone cloning
 	 *
Index: uspace/lib/c/include/bitops.h
===================================================================
--- uspace/lib/c/include/bitops.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/bitops.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -66,30 +66,30 @@
 {
 	unsigned int n = 0;
-	
+
 	if (arg >> 16) {
 		arg >>= 16;
 		n += 16;
 	}
-	
+
 	if (arg >> 8) {
 		arg >>= 8;
 		n += 8;
 	}
-	
+
 	if (arg >> 4) {
 		arg >>= 4;
 		n += 4;
 	}
-	
+
 	if (arg >> 2) {
 		arg >>= 2;
 		n += 2;
 	}
-	
+
 	if (arg >> 1) {
 		arg >>= 1;
 		n += 1;
 	}
-	
+
 	return n;
 }
@@ -98,10 +98,10 @@
 {
 	unsigned int n = 0;
-	
+
 	if (arg >> 32) {
 		arg >>= 32;
 		n += 32;
 	}
-	
+
 	return (n + fnzb32((uint32_t) arg));
 }
Index: uspace/lib/c/include/device/hw_res.h
===================================================================
--- uspace/lib/c/include/device/hw_res.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/device/hw_res.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -82,5 +82,5 @@
 			endianness_t endianness;
 		} mem_range;
-		
+
 		struct {
 			uint64_t address;
@@ -89,9 +89,9 @@
 			endianness_t endianness;
 		} io_range;
-		
+
 		struct {
 			int irq;
 		} interrupt;
-		
+
 		union {
 			unsigned int dma8;
@@ -112,5 +112,5 @@
 		hw_res->resources = NULL;
 	}
-	
+
 	hw_res->count = 0;
 }
Index: uspace/lib/c/include/device/hw_res_parsed.h
===================================================================
--- uspace/lib/c/include/device/hw_res_parsed.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/device/hw_res_parsed.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -64,5 +64,5 @@
 	/** Start address */
 	address64_t address;
-	
+
 	/** Area size */
 	size_t size;
@@ -82,5 +82,5 @@
 	/** Irq count */
 	size_t count;
-	
+
 	/** Array of IRQs */
 	int *irqs;
@@ -100,5 +100,5 @@
 	/** Areas count */
 	size_t count;
-	
+
 	/** Array of areas */
 	addr_range_t *ranges;
@@ -115,11 +115,11 @@
 	/** List of IRQs */
 	irq_list_t irqs;
-	
+
 	/** List of DMA channels */
 	dma_list_t dma_channels;
-	
+
 	/** List of memory areas */
 	mem_range_list_t mem_ranges;
-	
+
 	/** List of IO areas */
 	io_range_list_t io_ranges;
@@ -136,10 +136,10 @@
 	if (list == NULL)
 		return;
-	
+
 	free(list->irqs.irqs);
 	free(list->io_ranges.ranges);
 	free(list->mem_ranges.ranges);
 	free(list->dma_channels.channels);
-	
+
 	memset(list, 0, sizeof(hw_res_list_parsed_t));
 }
Index: uspace/lib/c/include/fibril.h
===================================================================
--- uspace/lib/c/include/fibril.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/fibril.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -73,9 +73,9 @@
 	errno_t (*func)(void *);
 	tcb_t *tcb;
-	
+
 	struct fibril *clean_after_me;
 	errno_t retval;
 	int flags;
-	
+
 	fibril_owner_info_t *waits_for;
 
Index: uspace/lib/c/include/fibril_synch.h
===================================================================
--- uspace/lib/c/include/fibril_synch.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/fibril_synch.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -61,5 +61,5 @@
 		} \
 	}
-	
+
 #define FIBRIL_MUTEX_INITIALIZE(name) \
 	fibril_mutex_t name = FIBRIL_MUTEX_INITIALIZER(name)
Index: uspace/lib/c/include/futex.h
===================================================================
--- uspace/lib/c/include/futex.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/futex.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -80,5 +80,5 @@
 	} \
 })
-		
+
 #define futex_unlock(fut) \
 ({ \
@@ -91,5 +91,5 @@
 
 extern void futex_upgrade_all_and_wait(void);
-		
+
 #else
 
@@ -99,5 +99,5 @@
 #define futex_trylock(fut)  futex_trydown((fut))
 #define futex_unlock(fut)   (void) futex_up((fut))
-		
+
 #endif
 
@@ -130,5 +130,5 @@
 	if ((atomic_signed_t) atomic_predec(&futex->val) < 0)
 		return (errno_t) __SYSCALL1(SYS_FUTEX_SLEEP, (sysarg_t) &futex->val.count);
-	
+
 	return EOK;
 }
@@ -147,5 +147,5 @@
 	if ((atomic_signed_t) atomic_postinc(&futex->val) < 0)
 		return (errno_t) __SYSCALL1(SYS_FUTEX_WAKEUP, (sysarg_t) &futex->val.count);
-	
+
 	return EOK;
 }
Index: uspace/lib/c/include/inet/addr.h
===================================================================
--- uspace/lib/c/include/inet/addr.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/inet/addr.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -66,5 +66,5 @@
 	/** IP version */
 	ip_ver_t version;
-	
+
 	/** Address */
 	union {
@@ -72,5 +72,5 @@
 		addr128_t addr6;
 	};
-	
+
 	/** Number of valid bits */
 	uint8_t prefix;
Index: uspace/lib/c/include/io/charfield.h
===================================================================
--- uspace/lib/c/include/io/charfield.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/io/charfield.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -86,5 +86,5 @@
 	if (a1.type != a2.type)
 		return false;
-	
+
 	switch (a1.type) {
 	case CHAR_ATTR_STYLE:
@@ -98,5 +98,5 @@
 		    && (a1.val.rgb.fgcolor == a2.val.rgb.fgcolor);
 	}
-	
+
 	return false;
 }
Index: uspace/lib/c/include/io/chargrid.h
===================================================================
--- uspace/lib/c/include/io/chargrid.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/io/chargrid.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -49,14 +49,14 @@
 	size_t size;            /**< Structure size */
 	chargrid_flag_t flags;  /**< Screenbuffer flags */
-	
+
 	sysarg_t cols;          /**< Number of columns */
 	sysarg_t rows;          /**< Number of rows */
-	
+
 	sysarg_t col;           /**< Current column */
 	sysarg_t row;           /**< Current row */
 	bool cursor_visible;    /**< Cursor visibility */
-	
+
 	char_attrs_t attrs;     /**< Current attributes */
-	
+
 	sysarg_t top_row;       /**< The first row in the cyclic buffer */
 	charfield_t data[];     /**< Screen contents (cyclic buffer) */
Index: uspace/lib/c/include/io/console.h
===================================================================
--- uspace/lib/c/include/io/console.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/io/console.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -49,17 +49,17 @@
 	/** Console input file */
 	FILE *input;
-	
+
 	/** Console output file */
 	FILE *output;
-	
+
 	/** Console input session */
 	async_sess_t *input_sess;
-	
+
 	/** Console output session */
 	async_sess_t *output_sess;
-	
+
 	/** Input request call with timeout */
 	ipc_call_t input_call;
-	
+
 	/** Input response with timeout */
 	aid_t input_aid;
Index: uspace/lib/c/include/io/kbd_event.h
===================================================================
--- uspace/lib/c/include/io/kbd_event.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/io/kbd_event.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -48,14 +48,14 @@
 	/** List handle */
 	link_t link;
-	
+
 	/** Press or release event. */
 	kbd_event_type_t type;
-	
+
 	/** Keycode of the key that was pressed or released. */
 	keycode_t key;
-	
+
 	/** Bitmask of modifiers held. */
 	keymod_t mods;
-	
+
 	/** The character that was generated or '\0' for none. */
 	wchar_t c;
Index: uspace/lib/c/include/io/keycode.h
===================================================================
--- uspace/lib/c/include/io/keycode.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/io/keycode.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -93,5 +93,5 @@
 
 	KC_CAPS_LOCK,
-	
+
 	KC_A,
 	KC_S,
@@ -199,5 +199,5 @@
 	KC_N0,
 	KC_NPERIOD
-	
+
 } keycode_t;
 
@@ -212,5 +212,5 @@
 	KM_NUM_LOCK    = 0x080,
 	KM_SCROLL_LOCK = 0x100,
-	
+
 	KM_SHIFT       = KM_LSHIFT | KM_RSHIFT,
 	KM_CTRL        = KM_LCTRL | KM_RCTRL,
Index: uspace/lib/c/include/io/mode.h
===================================================================
--- uspace/lib/c/include/io/mode.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/io/mode.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -55,10 +55,10 @@
 	sysarg_t index;
 	sysarg_t version;
-	
+
 	sysarg_t refresh_rate;
 	aspect_ratio_t screen_aspect;
 	sysarg_t screen_width;
 	sysarg_t screen_height;
-	
+
 	aspect_ratio_t cell_aspect;
 	cell_visual_t cell_visual;
Index: uspace/lib/c/include/io/pixelmap.h
===================================================================
--- uspace/lib/c/include/io/pixelmap.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/io/pixelmap.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -47,11 +47,11 @@
 	/* Pixels outside of a pixmap are PIXEL(0, 0, 0, 0) */
 	PIXELMAP_EXTEND_TRANSPARENT_BLACK = 0,
-	
+
 	/* The pixmap is repeated infinetely */
 	PIXELMAP_EXTEND_TILE,
-	
+
 	/* If outside of a pixmap, return closest pixel from the edge */
 	PIXELMAP_EXTEND_SIDES,
-	
+
 	/* If outside of a pixmap, return closest pixel from the edge,
 	 * with alpha = 0
@@ -125,5 +125,5 @@
 			transparent = transparent_outside;
 		}
-		
+
 		if (y < 0) {
 			y = 0;
@@ -135,5 +135,5 @@
 		}
 	}
-	
+
 	if (x < 0 || ((sysarg_t) x) >= pixmap->width ||
 	    y < 0 || ((sysarg_t) y) >= pixmap->height)
@@ -141,8 +141,8 @@
 
 	pixel_t pixel = pixelmap_get_pixel(pixmap, x, y);
-	
+
 	if (transparent)
 		pixel = PIXEL(0, RED(pixel), GREEN(pixel), BLUE(pixel));
-	
+
 	return pixel;
 }
Index: uspace/lib/c/include/io/printf_core.h
===================================================================
--- uspace/lib/c/include/io/printf_core.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/io/printf_core.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -43,8 +43,8 @@
 	/* String output function, returns number of printed characters or EOF */
 	int (*str_write)(const char *, size_t, void *);
-	
+
 	/* Wide string output function, returns number of printed characters or EOF */
 	int (*wstr_write)(const wchar_t *, size_t, void *);
-	
+
 	/* User data - output stream specification, state, locks, etc. */
 	void *data;
Index: uspace/lib/c/include/ipc/devman.h
===================================================================
--- uspace/lib/c/include/ipc/devman.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/ipc/devman.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -46,5 +46,5 @@
 	/** Driver has not been started. */
 	DRIVER_NOT_STARTED = 0,
-	
+
 	/**
 	 * Driver has been started, but has not registered as running and ready
@@ -52,5 +52,5 @@
 	 */
 	DRIVER_STARTING,
-	
+
 	/** Driver is running and prepared to serve incomming requests. */
 	DRIVER_RUNNING
@@ -110,5 +110,5 @@
 	match_id_t *mid = NULL;
 	link_t *link = ids->ids.head.next;
-	
+
 	while (link != &ids->ids.head) {
 		mid = list_get_instance(link, match_id_t,link);
@@ -118,5 +118,5 @@
 		link = link->next;
 	}
-	
+
 	list_insert_before(&id->link, link);
 }
@@ -131,5 +131,5 @@
 	link_t *link = NULL;
 	match_id_t *id;
-	
+
 	while (!list_empty(&ids->ids)) {
 		link = list_first(&ids->ids);
Index: uspace/lib/c/include/ipc/graph.h
===================================================================
--- uspace/lib/c/include/ipc/graph.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/ipc/graph.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -41,5 +41,5 @@
 	VISUALIZER_CLAIM = IPC_FIRST_USER_METHOD,
 	VISUALIZER_YIELD,
-	
+
 	VISUALIZER_ENUMERATE_MODES,
 	VISUALIZER_GET_DEFAULT_MODE,
@@ -47,7 +47,7 @@
 	VISUALIZER_GET_MODE,
 	VISUALIZER_SET_MODE,
-	
+
 	VISUALIZER_UPDATE_DAMAGED_REGION,
-	
+
 	VISUALIZER_SUSPEND,
 	VISUALIZER_WAKE_UP,
Index: uspace/lib/c/include/ipc/output.h
===================================================================
--- uspace/lib/c/include/ipc/output.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/ipc/output.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -45,13 +45,13 @@
 	OUTPUT_GET_DIMENSIONS,
 	OUTPUT_GET_CAPS,
-	
+
 	OUTPUT_FRONTBUF_CREATE,
 	OUTPUT_FRONTBUF_DESTROY,
-	
+
 	OUTPUT_CURSOR_UPDATE,
 	OUTPUT_SET_STYLE,
 	OUTPUT_SET_COLOR,
 	OUTPUT_SET_RGB_COLOR,
-	
+
 	OUTPUT_UPDATE,
 	OUTPUT_DAMAGE
Index: uspace/lib/c/include/ipc/vfs.h
===================================================================
--- uspace/lib/c/include/ipc/vfs.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/ipc/vfs.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -170,9 +170,9 @@
 	WALK_MAY_CREATE = (1 << 0),
 	WALK_MUST_CREATE = (1 << 1),
-	
+
 	WALK_REGULAR = (1 << 2),
 	WALK_DIRECTORY = (1 << 3),
 	WALK_MOUNT_POINT = (1 << 4),
-	
+
 	WALK_ALL_FLAGS = WALK_MAY_CREATE | WALK_MUST_CREATE | WALK_REGULAR |
 	    WALK_DIRECTORY | WALK_MOUNT_POINT,
Index: uspace/lib/c/include/loader/pcb.h
===================================================================
--- uspace/lib/c/include/loader/pcb.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/loader/pcb.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -55,21 +55,21 @@
 	/** Program entry point. */
 	entry_point_t entry;
-	
+
 	/** Current working directory. */
 	char *cwd;
-	
+
 	/** Number of command-line arguments. */
 	int argc;
 	/** Command-line arguments. */
 	char **argv;
-	
+
 	/** List of inbox files. */
 	struct pcb_inbox_entry *inbox;
 	int inbox_entries;
-	
+
 	/*
 	 * ELF-specific data.
 	 */
-	
+
 	/** Pointer to ELF dynamic section of the program. */
 	void *dynamic;
Index: uspace/lib/c/include/nic/nic.h
===================================================================
--- uspace/lib/c/include/nic/nic.h	(revision 1b20da07baaa3e3c424f62c927274e676e4295cd)
+++ uspace/lib/c/include/nic/nic.h	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -218,5 +218,5 @@
 
 	/* for cslip etc */
-	
+
 	/** Total compressed packets received. */
 	unsigned long receive_compressed;
