mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-12 14:20:04 +00:00
15 lines
187 B
C
15 lines
187 B
C
#include <stdlib.h>
|
|
|
|
static void test()
|
|
{
|
|
void* leak;
|
|
int i;
|
|
for (i = 0; i < 1000; i++)
|
|
leak = (void*)malloc( 1 );
|
|
}
|
|
int main()
|
|
{
|
|
test();
|
|
return 0;
|
|
}
|