blob: 3c7fab573fa70fe768fc5b5fa79ad49bd1f0e192 [file] [log] [blame]
#include <stdio.h>
#include <unistd.h>
#ifdef PROTOTYPES
int main (void)
#else
main ()
#endif
{
int pid;
pid = vfork ();
if (pid == 0) {
printf ("I'm the child!\n");
execlp ("gdb.base/vforked-prog", "gdb.base/vforked-prog", (char *)0);
}
else {
printf ("I'm the proud parent of child #%d!\n", pid);
}
}