1#include <stdio.h>
2#include "valgrind.h"
3
4int main()
5{
6	printf("RUNNING_ON_VALGRIND=%d\n", RUNNING_ON_VALGRIND);
7	return 0;
8}
9