Initial import
[gdb.git] / gdb / testsuite / gdb.base / foll-vfork.c
blob3c7fab573fa70fe768fc5b5fa79ad49bd1f0e192
1 #include <stdio.h>
2 #include <unistd.h>
4 #ifdef PROTOTYPES
5 int main (void)
6 #else
7 main ()
8 #endif
10 int pid;
12 pid = vfork ();
13 if (pid == 0) {
14 printf ("I'm the child!\n");
15 execlp ("gdb.base/vforked-prog", "gdb.base/vforked-prog", (char *)0);
17 else {
18 printf ("I'm the proud parent of child #%d!\n", pid);