1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-24 14:17:23 +00:00

fix setjmp.h

This commit is contained in:
mrdudz
2022-08-28 20:05:11 +02:00
parent ce6ee1b891
commit 8e5f6b822d
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -42,8 +42,8 @@ typedef char jmp_buf [5];
int __fastcall__ _setjmp (jmp_buf buf);
#define setjmp _setjmp /* ISO insists on a macro */
int __fastcall__ __setjmp (jmp_buf buf);
#define setjmp __setjmp /* ISO insists on a macro */
void __fastcall__ longjmp (jmp_buf buf, int retval) __attribute__((noreturn));