]> git.sur5r.net Git - cc65/blobdiff - include/setjmp.h
Moved declarations that are common to the C16 and the Plus4 libraries over to their...
[cc65] / include / setjmp.h
index 945312ab969da5c05c127324135b9c36362b5234..460829e381ff4c9e41d54d52e38480a3ce41228a 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                setjmp.h                                  */
+/*                                 setjmp.h                                  */
 /*                                                                           */
-/*                             Nonlocal jumps                               */
+/*                              Nonlocal jumps                               */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2000 Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (C) 1998-2009, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -43,12 +43,12 @@ typedef char jmp_buf [5];
 
 
 int __fastcall__ _setjmp (jmp_buf buf);
-#define setjmp _setjmp         /* ISO insists on a macro */
-void __fastcall__ longjmp (jmp_buf buf, int retval);
+#define setjmp  _setjmp         /* ISO insists on a macro */
+void __fastcall__ longjmp (jmp_buf buf, int retval) __attribute__((noreturn));
 
 
 
-/* End of stddef.h */
+/* End of setjmp.h */
 #endif