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