mariadb/linux/tests/try-leak-lost.c
Rich Prohaska 3383ab7b72 refs[t:2673] check how valgrind detects memory leaks
git-svn-id: file:///svn/toku/tokudb@20751 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:59:16 -04:00

6 lines
77 B
C

#include <stdlib.h>
int main(void) {
(void) malloc(42);
return 0;
}