mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-14 06:48:06 +00:00
13 lines
168 B
C
13 lines
168 B
C
static void test()
|
|
{
|
|
void* leak;
|
|
int i;
|
|
for (i = 0; i < 1000; i++)
|
|
leak = (void*)malloc( 100 );
|
|
}
|
|
int main()
|
|
{
|
|
test();
|
|
return 0;
|
|
}
|