mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-06 11:41:34 +00:00
is Rich Coe. Also, a minor mod to Makefile.install.am to handle tool names with dashes in. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7112
11 lines
171 B
C
11 lines
171 B
C
#include <stdlib.h>
|
|
|
|
static char *pointer1 = NULL;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
pointer1 = malloc(64);
|
|
|
|
return 0;
|
|
} /* No leak. */
|