From: Tormod Volden Date: Thu, 19 May 2016 22:10:44 +0000 (+0200) Subject: Library: Add missing setjmp prototype for 6809 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=54697ddbbe824e24c7e5e55ce69265a59885b583;p=FUZIX.git Library: Add missing setjmp prototype for 6809 Signed-off-by: Tormod Volden --- 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