xen: refactor the various "version not supported" messages into a single helper
[valgrind.git] / gdbserver_tests / main_pic.c
blobe452b307571c925d34f92aec17a3737b9bdefb0c
1 #include <stdio.h>
3 static void another_func(char *msg)
5 printf ("another func called msg %s\n", msg);
8 int main (int argc, char *argv[])
10 printf("address of main %p\n", &main);
11 printf("address of another_func %p\n", &another_func);
12 another_func("called from main");
13 return 0;