diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-09 21:56:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-09 21:56:43 +0000 |
commit | c1422e5b7cdb4400f934c91bcefa3a1a96d789fb (patch) | |
tree | 7f8981b86c4ce4b5bb899f690eeb03d6645826a5 /include | |
parent | a4a1492eb94de4f5c5ec84a5898e994fca5f317b (diff) | |
download | glibc-c1422e5b7cdb4400f934c91bcefa3a1a96d789fb.tar.gz glibc-c1422e5b7cdb4400f934c91bcefa3a1a96d789fb.tar.xz glibc-c1422e5b7cdb4400f934c91bcefa3a1a96d789fb.zip |
Update.
Patch by khendricks@ivey.uwo.ca [libc/1382].
Diffstat (limited to 'include')
-rw-r--r-- | include/execinfo.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/execinfo.h b/include/execinfo.h index d5c52164d2..143a9cc4ce 100644 --- a/include/execinfo.h +++ b/include/execinfo.h @@ -1 +1,11 @@ +#ifndef _EXECINFO_H #include <debug/execinfo.h> + +extern int __backtrace (void **__array, int __size); + +extern char **__backtrace_symbols (void *__const *__array, int __size); + +extern void __backtrace_symbols_fd (void *__const *__array, int __size, + int __fd); + +#endif |