diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-11-12 09:53:06 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-11-12 09:53:06 +0100 |
commit | 1ffe1ccb6ec5771765f1f6f0c439ed07bf345d67 (patch) | |
tree | a5d96c2270d9f919e4cda3c17649e5cec4ff519e /support/Makefile | |
parent | 456b40a97f7e867803b2f47f5fcd3f1fa4bc1f6e (diff) | |
download | glibc-1ffe1ccb6ec5771765f1f6f0c439ed07bf345d67.tar.gz glibc-1ffe1ccb6ec5771765f1f6f0c439ed07bf345d67.tar.xz glibc-1ffe1ccb6ec5771765f1f6f0c439ed07bf345d67.zip |
support: Add xstrndup, xunlink, xreadlink, support_create_temp_directory
Diffstat (limited to 'support/Makefile')
-rw-r--r-- | support/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/support/Makefile b/support/Makefile index 027a663000..dafb1737a4 100644 --- a/support/Makefile +++ b/support/Makefile @@ -109,19 +109,22 @@ libsupport-routines = \ xpthread_once \ xpthread_rwlock_init \ xpthread_rwlock_rdlock \ - xpthread_rwlock_wrlock \ xpthread_rwlock_unlock \ + xpthread_rwlock_wrlock \ xpthread_rwlockattr_init \ xpthread_rwlockattr_setkind_np \ xpthread_sigmask \ xpthread_spin_lock \ xpthread_spin_unlock \ + xreadlink \ xrealloc \ xrecvfrom \ xsendto \ xsetsockopt \ xsocket \ xstrdup \ + xstrndup \ + xunlink \ xwaitpid \ xwrite \ @@ -138,6 +141,7 @@ tests = \ tst-support_capture_subprocess \ tst-support_format_dns_packet \ tst-support_record_failure \ + tst-xreadlink \ ifeq ($(run-built-tests),yes) tests-special = \ |