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