Index: uspace/lib/mbr/mbr.h
===================================================================
--- uspace/lib/mbr/mbr.h	(revision dc76f4a6d7e0da45038149275644c9fbe876bd84)
+++ uspace/lib/mbr/mbr.h	(revision 0e183dd9fab1317745c3e4240ae7febea5010586)
@@ -1,5 +1,5 @@
 /*
  * Copyright (c) 2009 Jiri Svoboda
- * Copyright (c) 2011, 2012, 2013 Dominik Taborsky
+ * Copyright (c) 2011-2013 Dominik Taborsky
  * All rights reserved.
  *
@@ -39,9 +39,11 @@
 #include <sys/types.h>
 
-/** Number of primary partition records */
-#define N_PRIMARY		4
-
-/** Boot record signature */
-#define BR_SIGNATURE	0xAA55
+enum {
+	/** Number of primary partition records */
+	N_PRIMARY = 4,
+	
+	/** Boot record signature */
+	BR_SIGNATURE = 0xAA55
+};
 
 enum {
@@ -55,11 +57,11 @@
 enum {
 	/** Unused partition entry */
-	PT_UNUSED	= 0x00,
+	PT_UNUSED = 0x00,
 	/** Extended partition */
-	PT_EXTENDED	= 0x05,
+	PT_EXTENDED = 0x05,
 	/** Extended partition with LBA */
-	PT_EXTENDED_LBA	= 0x0F,
+	PT_EXTENDED_LBA = 0x0F,
 	/** GPT Protective partition */
-	PT_GPT	= 0xEE,
+	PT_GPT = 0xEE,
 };
 
