Usermode/libc - Add isxdigit
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / setjmp.h
index 53f3fbf..fe545af 100644 (file)
@@ -8,10 +8,10 @@
 #ifndef _LIBC_SETJMP_H_
 #define _LIBC_SETJMP_H_
 
-#if ARCHDIR_is_x86
-typedef uint32_t       jmp_buf[8];
-#elif ARCHDIR_is_x86_64
-typedef uint64_t       jmp_buf[16];
+#if defined(__i386__)
+typedef void   *jmp_buf[8];
+#elif defined(__amd64__)
+typedef void   *jmp_buf[16];
 #else
 # error "Unknown Architecture"
 #endif

UCC git Repository :: git.ucc.asn.au