Ruby  2.1.10p492(2016-04-01revision54464)
conftest.c
Go to the documentation of this file.
1 #include "ruby.h"
2 
3 /*top*/
4 extern int t(void);
5 int main(int argc, char **argv)
6 {
7  if (argc > 1000000) {
8  printf("%p", &t);
9  }
10 
11  return 0;
12 }
13 int t(void) { void ((*volatile p)()); p = (void ((*)()))ENGINE_cleanup; return 0; }
int main(int argc, char **argv)
Definition: conftest.c:5
int t(void)
Definition: conftest.c:13
int argc
Definition: ruby.c:131
char ** argv
Definition: ruby.c:132