summaryrefslogtreecommitdiff
path: root/src/common.c
diff options
context:
space:
mode:
authorAriadne Conill <ariadne@dereferenced.org>2021-12-10 11:41:52 -0600
committerTimo Teräs <timo.teras@iki.fi>2021-12-14 20:59:54 +0200
commitbf659c82465860b58b1ef8fee5cd8b6c3cade2a5 (patch)
tree3a14cac2efd6136e27edf720d2787701436c99e7 /src/common.c
parent676c0a40a66e3488c803fe7ddbfb50a33a52fb21 (diff)
downloadapk-tools-bf659c82465860b58b1ef8fee5cd8b6c3cade2a5.tar.gz
apk-tools-bf659c82465860b58b1ef8fee5cd8b6c3cade2a5.tar.bz2
apk-tools-bf659c82465860b58b1ef8fee5cd8b6c3cade2a5.tar.xz
apk-tools-bf659c82465860b58b1ef8fee5cd8b6c3cade2a5.zip
everywhere: use stdlib.h for malloc(3) definition, not GNU-specific malloc.h
musl implements support for malloc.h, but it is only a stub. we do not use any of the GNU-specific malloc interfaces, so just use POSIX stdlib.h instead. ref #10794
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c
index 580e6d5..2b0fe7e 100644
--- a/src/common.c
+++ b/src/common.c
@@ -6,7 +6,6 @@
* SPDX-License-Identifier: GPL-2.0-only
*/
-#include <malloc.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>