From 54697ddbbe824e24c7e5e55ce69265a59885b583 Mon Sep 17 00:00:00 2001 From: Tormod Volden Date: Fri, 20 May 2016 00:10:44 +0200 Subject: [PATCH] Library: Add missing setjmp prototype for 6809 Signed-off-by: Tormod Volden --- Library/include/setjmp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/include/setjmp.h b/Library/include/setjmp.h index 3c18b06a..e2cfd7f9 100644 --- a/Library/include/setjmp.h +++ b/Library/include/setjmp.h @@ -26,6 +26,7 @@ #elif defined(__m6809__) typedef uint16_t jmp_buf[4]; + extern int setjmp(jmp_buf env); __attribute__((__noreturn__)) void longjmp (jmp_buf env, int val); #else -- 2.34.1