Julian Seward 5b02b70476 Add Bryan Meredith's Omega tool as an experimental tool. Maintainer
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
2007-11-09 12:30:36 +00:00

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. */