xref: /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/vforked-prog.c (revision c90a81c56dcebd6a1b73fe4aff9b03385b8e63b3)
1 #include <stdio.h>
2 
3 #ifdef PROTOTYPES
4 int main (void)
5 #else
6 main()
7 #endif
8 {
9   printf("Hello from vforked-prog...\n");
10   return 0;
11 }
12