Index: sysdeps/posix/libc_fatal.c |
diff --git a/sysdeps/posix/libc_fatal.c b/sysdeps/posix/libc_fatal.c |
index c611b84363aaaee1be5536a38f327bd6265c3950..c60bf1c9ed7bbc3e9b4751efdb9f1b94f18e5e4d 100644 |
--- a/sysdeps/posix/libc_fatal.c |
+++ b/sysdeps/posix/libc_fatal.c |
@@ -35,11 +35,11 @@ |
#include FATAL_PREPARE_INCLUDE |
#endif |
-struct str_list |
+struct __str_list |
{ |
const char *str; |
size_t len; |
- struct str_list *next; |
+ struct __str_list *next; |
}; |
@@ -67,7 +67,7 @@ __libc_message (int do_abort, const char *fmt, ...) |
if (fd == -1) |
fd = STDERR_FILENO; |
- struct str_list *list = NULL; |
+ struct __str_list *list = NULL; |
int nlist = 0; |
const char *cp = fmt; |
@@ -99,7 +99,7 @@ __libc_message (int do_abort, const char *fmt, ...) |
cp = next; |
} |
- struct str_list *newp = alloca (sizeof (struct str_list)); |
+ struct __str_list *newp = alloca (sizeof (struct __str_list)); |
newp->str = str; |
newp->len = len; |
newp->next = list; |