summaryrefslogtreecommitdiff
path: root/include/execinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/execinfo.h')
-rw-r--r--include/execinfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/execinfo.h b/include/execinfo.h
index 66cfb9366..503c84662 100644
--- a/include/execinfo.h
+++ b/include/execinfo.h
@@ -29,13 +29,13 @@ extern int backtrace (void **__array, int __size) __nonnull ((1));
/* Return names of functions from the backtrace list in ARRAY in a newly
malloc()ed memory block. */
-extern char **backtrace_symbols (void *__const *__array, int __size)
+extern char **backtrace_symbols (void *const *__array, int __size)
__THROW __nonnull ((1));
/* This function is similar to backtrace_symbols() but it writes the result
immediately to a file. */
-extern void backtrace_symbols_fd (void *__const *__array, int __size, int __fd)
+extern void backtrace_symbols_fd (void *const *__array, int __size, int __fd)
__THROW __nonnull ((1));
__END_DECLS