diff options
Diffstat (limited to 'debug')
-rw-r--r-- | debug/execinfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/execinfo.h b/debug/execinfo.h index 07bed92..bf757ed 100644 --- a/debug/execinfo.h +++ b/debug/execinfo.h @@ -31,8 +31,8 @@ extern int backtrace __P ((void **__array, int __size)); /* Return names of functions from the backtrace list in ARRAY in a newly malloc()ed memory block. */ -extern char **__backtrace_symbols __P ((__const void **__array, int __size)); -extern char **backtrace_symbols __P ((__const void **__array, int __size)); +extern char **__backtrace_symbols __P ((void *__const *__array, int __size)); +extern char **backtrace_symbols __P ((void *__const *__array, int __size)); __END_DECLS |