aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include/setjmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/include/setjmp.h')
-rw-r--r--src/lib/include/setjmp.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/include/setjmp.h b/src/lib/include/setjmp.h
index 46c3b5d..904ae4a 100644
--- a/src/lib/include/setjmp.h
+++ b/src/lib/include/setjmp.h
@@ -2,10 +2,7 @@
#include <stdint.h>
-struct _jmp_buf {
- uint32_t stuff[10]; // 40 bytes
-};
-typedef struct _jmp_buf jmp_buf;
+typedef uint32_t jmp_buf[10];
int setjmp(jmp_buf env);