mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
Various minor changes to make these compile on AIX5. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6254
11 lines
107 B
C
11 lines
107 B
C
#include <stdio.h>
|
|
|
|
int main ()
|
|
{
|
|
int x;
|
|
|
|
printf ("x = %d\n", x==0xCAFEBABE ? 99 : 88);
|
|
|
|
return 0;
|
|
}
|