[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Lost] [Patch] libc - Fix für setjmp.h



! libc: In setjmp.h dword durch uintptr_t ersetzen, damit die types.h nicht 
reinkommt (Probleme beim cross compilieren)
Index: trunk/src/include/setjmp.h
===================================================================
--- trunk.orig/src/include/setjmp.h
+++ trunk/src/include/setjmp.h
@@ -35,9 +35,9 @@
 
 #ifndef SETJMP_H
 #define SETJMP_H
-#include <types.h>
+#include <stdint.h>
 
-typedef dword jmp_buf[9];
+typedef uintptr_t jmp_buf[9];
 
 int setjmp(jmp_buf env);
 void longjmp(jmp_buf env, int value);

Attachment: signature.asc
Description: This is a digitally signed message part.