summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/Makefile.inc
diff options
context:
space:
mode:
authorguenther <>2017-12-16 20:06:56 +0000
committerguenther <>2017-12-16 20:06:56 +0000
commit2eba43d0c1c78cf2d13b896bb9a608c482a585df (patch)
tree2fa5dfadabf13e01a2eeaa103c96c8e3c59c40c9 /src/lib/libc/stdlib/Makefile.inc
parentcfcd6a9a82fccae3c7538bacdf933acc3f90fea2 (diff)
downloadopenbsd-2eba43d0c1c78cf2d13b896bb9a608c482a585df.tar.gz
openbsd-2eba43d0c1c78cf2d13b896bb9a608c482a585df.tar.bz2
openbsd-2eba43d0c1c78cf2d13b896bb9a608c482a585df.zip
Move __cxa_thread_atexit* to its own .c file to avoid pulling the code
(w/ _dlctl reference) into static executables. It's all Mark's code so put his preferred copyright on it. ok kettenis@
Diffstat (limited to 'src/lib/libc/stdlib/Makefile.inc')
-rw-r--r--src/lib/libc/stdlib/Makefile.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc
index e754e09196..55b8018522 100644
--- a/src/lib/libc/stdlib/Makefile.inc
+++ b/src/lib/libc/stdlib/Makefile.inc
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile.inc,v 1.63 2017/03/24 16:15:31 otto Exp $ 1# $OpenBSD: Makefile.inc,v 1.64 2017/12/16 20:06:55 guenther Exp $
2 2
3# stdlib sources 3# stdlib sources
4.PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/stdlib ${LIBCSRCDIR}/stdlib 4.PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/stdlib ${LIBCSRCDIR}/stdlib
@@ -10,7 +10,9 @@ SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \
10 merge.c posix_pty.c qsort.c radixsort.c rand.c random.c \ 10 merge.c posix_pty.c qsort.c radixsort.c rand.c random.c \
11 realpath.c remque.c setenv.c strtoimax.c \ 11 realpath.c remque.c setenv.c strtoimax.c \
12 strtol.c strtoll.c strtonum.c strtoul.c strtoull.c strtoumax.c \ 12 strtol.c strtoll.c strtonum.c strtoul.c strtoull.c strtoumax.c \
13 system.c tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c \ 13 system.c \
14 tfind.c thread_atexit.c tsearch.c \
15 _rand48.c drand48.c erand48.c jrand48.c \
14 lcong48.c lrand48.c mrand48.c nrand48.c seed48.c srand48.c \ 16 lcong48.c lrand48.c mrand48.c nrand48.c seed48.c srand48.c \
15 _Exit.c icdb.c 17 _Exit.c icdb.c
16 18