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 16:23:29 +0000 |
commit | f4f7796ccc9e398b047bc537e28a065dfa83c8a9 (patch) | |
tree | 9678ab251f86e43d41e0aa6a3d7e99cf47dd5915 /src/blob.c | |
parent | b2d3d6318461344ab80abf93eda715a2783d4aa6 (diff) | |
download | apk-tools-f4f7796ccc9e398b047bc537e28a065dfa83c8a9.tar.gz apk-tools-f4f7796ccc9e398b047bc537e28a065dfa83c8a9.tar.bz2 apk-tools-f4f7796ccc9e398b047bc537e28a065dfa83c8a9.tar.xz apk-tools-f4f7796ccc9e398b047bc537e28a065dfa83c8a9.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/blob.c')
-rw-r--r-- | src/blob.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ * SPDX-License-Identifier: GPL-2.0-only */ -#include <malloc.h> +#include <stdlib.h> #include <string.h> #include <stdio.h> #include <stdint.h> |