fix typo.
authorDavid Taylor <taylor@redhat.com>
Tue, 12 Jan 1999 15:19:11 +0000 (15:19 +0000)
committerDavid Taylor <taylor@redhat.com>
Tue, 12 Jan 1999 15:19:11 +0000 (15:19 +0000)
gdb/testsuite/gdb.hp/foll-fork,c [deleted file]
gdb/testsuite/gdb.hp/foll-fork.c [new file with mode: 0644]

diff --git a/gdb/testsuite/gdb.hp/foll-fork,c b/gdb/testsuite/gdb.hp/foll-fork,c
deleted file mode 100644 (file)
index 89f92ae..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <stdio.h>
-
-void callee (i)
-  int  i;
-{
-  printf("callee: %d\n", i);
-}
-
-main ()
-{
-  int  pid;
-  int  v = 5;
-
-  pid = fork ();
-  if (pid == 0)
-    {
-      v++;
-      /* printf ("I'm the child!\n"); */
-    }
-  else
-    {
-      v--;
-      /* printf ("I'm the proud parent of child #%d!\n", pid); */
-    }
-}
diff --git a/gdb/testsuite/gdb.hp/foll-fork.c b/gdb/testsuite/gdb.hp/foll-fork.c
new file mode 100644 (file)
index 0000000..89f92ae
--- /dev/null
@@ -0,0 +1,25 @@
+#include <stdio.h>
+
+void callee (i)
+  int  i;
+{
+  printf("callee: %d\n", i);
+}
+
+main ()
+{
+  int  pid;
+  int  v = 5;
+
+  pid = fork ();
+  if (pid == 0)
+    {
+      v++;
+      /* printf ("I'm the child!\n"); */
+    }
+  else
+    {
+      v--;
+      /* printf ("I'm the proud parent of child #%d!\n", pid); */
+    }
+}