Index: uspace/lib/c/include/setjmp.h
===================================================================
--- uspace/lib/c/include/setjmp.h	(revision 38db62889297c9b33b9db3189dea9609d55654a9)
+++ uspace/lib/c/include/setjmp.h	(revision cb2739a35716a85d91d56821607bb7c1756d7c10)
@@ -1,4 +1,5 @@
 /*
  * Copyright (c) 2008 Josef Cejka
+ * Copyright (c) 2013 Vojtech Horky
  * All rights reserved.
  *
@@ -36,7 +37,10 @@
 #define LIBC_SETJMP_H_
 
-#include <libarch/fibril.h>
-
-typedef context_t jmp_buf[1];
+/*
+ * We hide the structure to allow smooth inclusion from libposix
+ * as no other types are necessary (and thus no includes are needed).
+ */
+struct jmp_buf_interal;
+typedef struct jmp_buf_interal *jmp_buf;
 
 extern int setjmp(jmp_buf env);
