mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 10:21:20 +00:00
seem to be simply duplication of the x86 instruction set tests into the addrcheck and helgrind trees. I'm not sure what this duplication achieves. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3264
9 lines
126 B
C
9 lines
126 B
C
#include <stdio.h>
|
|
#include "valgrind.h"
|
|
|
|
int main()
|
|
{
|
|
printf("RUNNING_ON_VALGRIND=%d\n", RUNNING_ON_VALGRIND);
|
|
return 0;
|
|
}
|