aboutsummaryrefslogtreecommitdiff
path: root/gdb/testfun.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testfun.c')
-rw-r--r--gdb/testfun.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/gdb/testfun.c b/gdb/testfun.c
deleted file mode 100644
index eeeebd7..0000000
--- a/gdb/testfun.c
+++ /dev/null
@@ -1,22 +0,0 @@
-main ()
-{
- register double a = 1.5;
- foo (a);
-}
-
-foo (x)
-{
- printf ("%f\n", x);
-}
-
-do_add (x, y)
-{
- return x + y;
-}
-
-double
-do_float_add (x, y, z)
- register double x, y, z;
-{
- return x + y + z;
-}