mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
10 lines
105 B
C
10 lines
105 B
C
|
|
#include <malloc.h>
|
|
|
|
int main ( void )
|
|
{
|
|
volatile int* a = malloc(1000);
|
|
a[0] = 0;
|
|
return a[0];
|
|
}
|