Browse Source

Merge pull request #967 from trapexit/malloc-trim

Add malloc_trim configure test
pull/968/head
trapexit 3 years ago
committed by GitHub
parent
commit
fee97efafb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      libfuse/ecfd/tests/HAVE_MALLOC_TRIM.c

7
libfuse/ecfd/tests/HAVE_MALLOC_TRIM.c

@ -0,0 +1,7 @@
#include <malloc.h>
int
main()
{
malloc_trim(0);
}
Loading…
Cancel
Save