Merge pull request #967 from trapexit/malloc-trim

Add malloc_trim configure test
This commit is contained in:
trapexit 2021-09-30 20:25:42 -04:00 committed by GitHub
commit fee97efafb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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