Line 0
Link Here
|
|
|
1 |
--- lib/obstack.c.orig 2013-10-23 04:25:42.000000000 -0400 |
2 |
+++ lib/obstack.c 2014-12-02 15:27:51.000000000 -0500 |
3 |
@@ -87,7 +87,7 @@ |
4 |
abort gracefully or use longjump - but shouldn't return. This |
5 |
variable by default points to the internal function |
6 |
'print_and_abort'. */ |
7 |
-static _Noreturn void print_and_abort (void); |
8 |
+_Noreturn static void print_and_abort (void); |
9 |
void (*obstack_alloc_failed_handler) (void) = print_and_abort; |
10 |
|
11 |
/* Exit value used when 'print_and_abort' is used. */ |
12 |
@@ -401,7 +401,7 @@ |
13 |
# include <libio/iolibio.h> |
14 |
# endif |
15 |
|
16 |
-static _Noreturn void |
17 |
+_Noreturn static void |
18 |
print_and_abort (void) |
19 |
{ |
20 |
/* Don't change any of these strings. Yes, it would be possible to add |