Index: uspace/lib/c/arch/mips32/include/libarch/fibril_context.h
===================================================================
--- uspace/lib/c/arch/mips32/include/libarch/fibril_context.h	(revision e3444229c8e3295e9e2bed75246c19263f3c51a6)
+++ uspace/lib/c/arch/mips32/include/libarch/fibril_context.h	(revision 08e103d46af516da7dcb378db322a88e2c4aca0b)
@@ -30,29 +30,29 @@
 #define LIBC_ARCH_FIBRIL_CONTEXT_H_
 
-#define CONTEXT_OFFSET_SP   0x00
-#define CONTEXT_OFFSET_PC   0x04
-#define CONTEXT_OFFSET_S0   0x08
-#define CONTEXT_OFFSET_S1   0x0c
-#define CONTEXT_OFFSET_S2   0x10
-#define CONTEXT_OFFSET_S3   0x14
-#define CONTEXT_OFFSET_S4   0x18
-#define CONTEXT_OFFSET_S5   0x1c
-#define CONTEXT_OFFSET_S6   0x20
-#define CONTEXT_OFFSET_S7   0x24
-#define CONTEXT_OFFSET_S8   0x28
-#define CONTEXT_OFFSET_GP   0x2c
-#define CONTEXT_OFFSET_TLS  0x30
-#define CONTEXT_OFFSET_F20  0x34
-#define CONTEXT_OFFSET_F21  0x38
-#define CONTEXT_OFFSET_F22  0x3c
-#define CONTEXT_OFFSET_F23  0x40
-#define CONTEXT_OFFSET_F24  0x44
-#define CONTEXT_OFFSET_F25  0x48
-#define CONTEXT_OFFSET_F26  0x4c
-#define CONTEXT_OFFSET_F27  0x50
-#define CONTEXT_OFFSET_F28  0x54
-#define CONTEXT_OFFSET_F29  0x58
-#define CONTEXT_OFFSET_F30  0x5c
-#define CONTEXT_SIZE        0x60
+#define __CONTEXT_OFFSET_SP   0x00
+#define __CONTEXT_OFFSET_PC   0x04
+#define __CONTEXT_OFFSET_S0   0x08
+#define __CONTEXT_OFFSET_S1   0x0c
+#define __CONTEXT_OFFSET_S2   0x10
+#define __CONTEXT_OFFSET_S3   0x14
+#define __CONTEXT_OFFSET_S4   0x18
+#define __CONTEXT_OFFSET_S5   0x1c
+#define __CONTEXT_OFFSET_S6   0x20
+#define __CONTEXT_OFFSET_S7   0x24
+#define __CONTEXT_OFFSET_S8   0x28
+#define __CONTEXT_OFFSET_GP   0x2c
+#define __CONTEXT_OFFSET_TLS  0x30
+#define __CONTEXT_OFFSET_F20  0x34
+#define __CONTEXT_OFFSET_F21  0x38
+#define __CONTEXT_OFFSET_F22  0x3c
+#define __CONTEXT_OFFSET_F23  0x40
+#define __CONTEXT_OFFSET_F24  0x44
+#define __CONTEXT_OFFSET_F25  0x48
+#define __CONTEXT_OFFSET_F26  0x4c
+#define __CONTEXT_OFFSET_F27  0x50
+#define __CONTEXT_OFFSET_F28  0x54
+#define __CONTEXT_OFFSET_F29  0x58
+#define __CONTEXT_OFFSET_F30  0x5c
+#define __CONTEXT_SIZE        0x60
 
 #ifndef __ASSEMBLER__
@@ -61,5 +61,5 @@
 #include <stdint.h>
 
-typedef struct context {
+typedef struct __context {
 	uint32_t sp;
 	uint32_t pc;
@@ -87,5 +87,5 @@
 	uint32_t f29;
 	uint32_t f30;
-} context_t;
+} __context_t;
 
 #endif
