diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2021-12-10 11:41:52 -0600 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2021-12-14 20:59:54 +0200 |
commit | bf659c82465860b58b1ef8fee5cd8b6c3cade2a5 (patch) | |
tree | 3a14cac2efd6136e27edf720d2787701436c99e7 /src/package.c | |
parent | 676c0a40a66e3488c803fe7ddbfb50a33a52fb21 (diff) | |
download | apk-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/package.c')
-rw-r--r-- | src/package.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/package.c b/src/package.c index c068b8d..eba1b2b 100644 --- a/src/package.c +++ b/src/package.c @@ -12,7 +12,6 @@ #include <ctype.h> #include <stdio.h> #include <limits.h> -#include <malloc.h> #include <string.h> #include <stdlib.h> #include <unistd.h> |