summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.hp/foll-vfork.c
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>1999-08-16 20:02:19 +0000
committerJason Molenda <jmolenda@apple.com>1999-08-16 20:02:19 +0000
commitc31fd3fe9f6ba788a09e64c6523bd5d2f79e31f6 (patch)
tree1c54fedfa3e06496ea7def7c8ae5616369ca0deb /gdb/testsuite/gdb.hp/foll-vfork.c
parent7be570e7ce77920e2e628a03bdfe2d295fc2568f (diff)
downloadbinutils-gdb-c31fd3fe9f6ba788a09e64c6523bd5d2f79e31f6.tar.gz
These files removed in the 1999-08-16 snapshot.
Diffstat (limited to 'gdb/testsuite/gdb.hp/foll-vfork.c')
-rw-r--r--gdb/testsuite/gdb.hp/foll-vfork.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gdb/testsuite/gdb.hp/foll-vfork.c b/gdb/testsuite/gdb.hp/foll-vfork.c
deleted file mode 100644
index c7e6cd32909..00000000000
--- a/gdb/testsuite/gdb.hp/foll-vfork.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdio.h>
-
-main ()
-{
- int pid;
-
- pid = vfork ();
- if (pid == 0) {
- printf ("I'm the child!\n");
- execlp ("gdb.hp/vforked-program", "gdb.hp/vforked-program", (char *)0);
- }
- else {
- printf ("I'm the proud parent of child #%d!\n", pid);
- }
-}