From c929781d083bd1bcb23e2ebd24c7cd1f4501bf6f Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Thu, 30 Sep 2021 20:00:40 -0400 Subject: [PATCH] Add malloc_trim configure test --- libfuse/ecfd/tests/HAVE_MALLOC_TRIM.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 libfuse/ecfd/tests/HAVE_MALLOC_TRIM.c diff --git a/libfuse/ecfd/tests/HAVE_MALLOC_TRIM.c b/libfuse/ecfd/tests/HAVE_MALLOC_TRIM.c new file mode 100644 index 00000000..64c1c00e --- /dev/null +++ b/libfuse/ecfd/tests/HAVE_MALLOC_TRIM.c @@ -0,0 +1,7 @@ +#include + +int +main() +{ + malloc_trim(0); +}