summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2018-01-14 21:22:23 -0600
committerSamuel Holland <samuel@sholland.org>2018-01-14 21:26:44 -0600
commit51fcab754dabef67a26210a6e1cd752290a10749 (patch)
treec2b4a6ae9dc6eafd2da9b1f90507ece8e03e0beb /Makefile
parent9e0bbd07ef5affa403d476b0bcdabfc5a5684cf9 (diff)
downloadgcompat-51fcab754dabef67a26210a6e1cd752290a10749.tar.gz
gcompat-51fcab754dabef67a26210a6e1cd752290a10749.tar.bz2
gcompat-51fcab754dabef67a26210a6e1cd752290a10749.tar.xz
gcompat-51fcab754dabef67a26210a6e1cd752290a10749.zip
execinfo: Clean up, implement backtrace_symbols_fd
Rename the file to match the header it implements functions from. Changes to existing code: * Fix the return value from backtrace (off by one). * Use __builtin_extract_return_addr as recommended in gcc documentation. * Document header usage. * Document where the functions are referenced in the LSB standard. Signed-off-by: Samuel Holland <samuel@sholland.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 887a7cf..b6ea4f7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
LIBGCOMPAT_INCLUDE = \
libgcompat/alias.h
LIBGCOMPAT_SRC = \
- libgcompat/backtrace.c \
libgcompat/dlmopen.c \
libgcompat/dlvsym.c \
+ libgcompat/execinfo.c \
libgcompat/gnulib.c \
libgcompat/malloc.c \
libgcompat/math.c \