mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
12 lines
129 B
C
12 lines
129 B
C
#include <stdio.h>
|
|
#include <malloc.h>
|
|
|
|
int main ()
|
|
{
|
|
int *x;
|
|
|
|
printf ("x = %d\n", *x==0xDEADBEEF ? 99 : 88);
|
|
|
|
return 0;
|
|
}
|