build: Stop checking for malloc() and memset() We do not provide alternatives for when memset() is missing, or when malloc() is not GNU-style malloc(), causing redirection to (undefined) rpl_malloc(). We do not rely on GNU-style malloc() at all, so there is no point in checking for it. [guillem@hadrons.org: - Slightly reword commit message. ] Signed-off-by: Guillem Jover <guillem@hadrons.org>
diff --git a/configure.ac b/configure.ac
index 16dcc53..6cc811e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,8 +39,6 @@ AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
# Checks for library functions.
-AC_FUNC_MALLOC
-AC_CHECK_FUNCS([memset])
AC_CONFIG_FILES([
Makefile