aboutsummaryrefslogtreecommitdiff
path: root/gdb/testrec.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testrec.c')
-rw-r--r--gdb/testrec.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/testrec.c b/gdb/testrec.c
deleted file mode 100644
index 797c08b..0000000
--- a/gdb/testrec.c
+++ /dev/null
@@ -1,12 +0,0 @@
-main ()
-{
- foo (4);
-}
-
-foo (x)
- int x;
-{
- if (x > 0)
- foo (x - 1);
-}
-