mariadb/linux/tests/try-leak-reachable.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

8 lines
93 B
C

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